diff options
Diffstat (limited to 'rt/share/html/Elements/ShowUser')
-rw-r--r-- | rt/share/html/Elements/ShowUser | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/rt/share/html/Elements/ShowUser b/rt/share/html/Elements/ShowUser index 6381594d9..044ec4c84 100644 --- a/rt/share/html/Elements/ShowUser +++ b/rt/share/html/Elements/ShowUser @@ -2,7 +2,7 @@ %# %# COPYRIGHT: %# -%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC +%# This software is Copyright (c) 1996-2012 Best Practical Solutions, LLC %# <sales@bestpractical.com> %# %# (Except where explicitly superseded by other copyright notices) @@ -59,13 +59,14 @@ unless ( $m->comp_exists( $comp ) ) { . ', but '. $comp . "doesn't exist" ); return $m->comp('/Elements/ShowUserConcise', - User => $User, Address => $Address, + User => $User, Address => $Address, NoEscape => $NoEscape ); } -return $m->comp( $comp, User => $User, Address => $Address ); +return $m->comp( $comp, User => $User, Address => $Address, NoEscape => $NoEscape ); </%INIT> <%ARGS> $User => undef $Address => undef +$NoEscape => 0 $style => RT->Config->Get('UsernameFormat', $session{'CurrentUser'}) </%ARGS> |