[Rt-commit] rt branch, 3.8-trunk, updated. rt-3.8.5-213-g6c815fd
Emmanuel Lacour
elacour at bestpractical.com
Thu Oct 1 12:07:20 EDT 2009
The branch, 3.8-trunk has been updated
via 6c815fdedee5096c1213d813fb4a4b881f41960c (commit)
from 3cf12f9b85d59f19cf84c25ce3f94b8afe7250d1 (commit)
Summary of changes:
share/html/Ticket/Elements/ShowRequestor | 10 ++++++----
1 files changed, 6 insertions(+), 4 deletions(-)
- Log -----------------------------------------------------------------
commit 6c815fdedee5096c1213d813fb4a4b881f41960c
Author: Emmanuel Lacour <elacour at easter-eggs.com>
Date: Thu Oct 1 17:56:50 2009 +0200
Make ShowRequestor boxes use same fonts style/size for keys/values as other boxes (closes: #13698).
(thanks to Christian Loos)
diff --git a/share/html/Ticket/Elements/ShowRequestor b/share/html/Ticket/Elements/ShowRequestor
index 7e042ae..7bb525b 100755
--- a/share/html/Ticket/Elements/ShowRequestor
+++ b/share/html/Ticket/Elements/ShowRequestor
@@ -74,13 +74,15 @@ while ( my $requestor = $people->Next ) {
%# Additional information about this user. Empty by default.
% $m->callback( requestor => $requestor, %ARGS, CallbackName => 'AboutThisUser' );
-<&|/l&>Comments about this user</&>:<br />
-<b><% ($requestor->Comments || loc("No comment entered about this user")) %></b><br />
+<span class="label"><&|/l&>Comments about this user</&>:</span><br />
+<b class="value"><% ($requestor->Comments || loc("No comment entered about this user")) %></b><br />
-<&|/l, $rows &>This user's [_1] highest priority tickets</&>:<br />
+<span class="label"><&|/l, $rows &>This user's [_1] highest priority tickets</&>:</span>
<ul>
%while (my $w=$tickets->Next) {
-<li><a href="<%RT->Config->Get('WebPath')%><%$DisplayPath%>?id=<%$w->id%>"><%$w->Id%>: <%$w->Subject%></a> (<%$w->Status%>)
+%my $uri = RT::URI->new( $session{'CurrentUser'} );
+%$uri->FromObject($w);
+<li class="value"><& /Elements/ShowLink, URI => $uri &></li>
%}
</ul>
-----------------------------------------------------------------------
More information about the Rt-commit
mailing list