|
24 | 24 | {/if} |
25 | 25 |
|
26 | 26 | <div class="messageAuthorContainer"> |
27 | | - <a href="{$userProfile->getLink()}" class="username userLink" data-object-id="{@$userProfile->userID}"{if $enableMicrodata} itemprop="url"{/if}> |
28 | | - <span{if $enableMicrodata} itemprop="name"{/if}>{@$userProfile->getFormattedUsername()}</span> |
| 27 | + <a href="{$userProfile->getLink()}" class="username userLink" data-object-id="{$userProfile->userID}"{if $enableMicrodata} itemprop="url"{/if}> |
| 28 | + <span{if $enableMicrodata} itemprop="name"{/if}>{unsafe:$userProfile->getFormattedUsername()}</span> |
29 | 29 | </a> |
30 | 30 | {if !$isReply} |
31 | 31 | {if $userProfile->banned} |
|
45 | 45 | {event name='beforeUserTitle'} |
46 | 46 |
|
47 | 47 | {if MODULE_USER_RANK && $userProfile->getUserTitle()} |
48 | | - <span class="badge userTitleBadge{if $userProfile->getRank() && $userProfile->getRank()->cssClassName} {@$userProfile->getRank()->cssClassName}{/if}">{$userProfile->getUserTitle()}</span> |
| 48 | + <span class="badge userTitleBadge{if $userProfile->getRank() && $userProfile->getRank()->cssClassName} {$userProfile->getRank()->cssClassName}{/if}">{$userProfile->getUserTitle()}</span> |
49 | 49 | {/if} |
50 | 50 |
|
51 | 51 | {event name='afterUserTitle'} |
|
54 | 54 | {/hascontent} |
55 | 55 |
|
56 | 56 | {if MODULE_USER_RANK && $userProfile->getRank() && $userProfile->getRank()->rankImage} |
57 | | - <div class="userRank">{@$userProfile->getRank()->getImage()}</div> |
| 57 | + <div class="userRank">{unsafe:$userProfile->getRank()->getImage()}</div> |
58 | 58 | {/if} |
59 | 59 | {/if} |
60 | 60 |
|
61 | 61 | {if !$isReply && MODULE_TROPHY && $__wcf->session->getPermission('user.profile.trophy.canSeeTrophies') && ($userProfile->isAccessible('canViewTrophies') || $userProfile->userID == $__wcf->session->userID) && $userProfile->getSpecialTrophies()|count} |
62 | 62 | <div class="specialTrophyContainer"> |
63 | 63 | <ul> |
64 | 64 | {foreach from=$userProfile->getSpecialTrophies() item=trophy} |
65 | | - <li><a href="{@$trophy->getLink()}">{@$trophy->renderTrophy(32, true)}</a></li> |
| 65 | + <li><a href="{$trophy->getLink()}">{unsafe:$trophy->renderTrophy(32, true)}</a></li> |
66 | 66 | {/foreach} |
67 | 67 | </ul> |
68 | 68 | </div> |
69 | 69 | {/if} |
70 | 70 | {else} |
71 | 71 | <div class="userAvatar"> |
72 | | - <span>{@$userProfile->getAvatar()->getImageTag(128)}</span> |
| 72 | + <span>{unsafe:$userProfile->getAvatar()->getImageTag(128)}</span> |
73 | 73 | </div> |
74 | 74 |
|
75 | 75 | <div class="messageAuthorContainer"> |
|
100 | 100 | {/if} |
101 | 101 |
|
102 | 102 | {if MESSAGE_SIDEBAR_ENABLE_ACTIVITY_POINTS && $userProfile->activityPoints} |
103 | | - <dt><a href="#" class="activityPointsDisplay jsTooltip" title="{lang user=$userProfile}wcf.user.activityPoint.showActivityPoints{/lang}" data-user-id="{@$userProfile->userID}">{lang}wcf.user.activityPoint{/lang}</a></dt> |
| 103 | + <dt><a href="#" class="activityPointsDisplay jsTooltip" title="{lang user=$userProfile}wcf.user.activityPoint.showActivityPoints{/lang}" data-user-id="{$userProfile->userID}">{lang}wcf.user.activityPoint{/lang}</a></dt> |
104 | 104 | <dd>{#$userProfile->activityPoints}</dd> |
105 | 105 | {/if} |
106 | 106 |
|
|
118 | 118 | {assign var='__formattedUserOption' value=$userProfile->getFormattedUserOption($__sidebarUserOption)} |
119 | 119 | {if $__formattedUserOption} |
120 | 120 | <dt>{lang}wcf.user.option.{$__sidebarUserOption}{/lang}</dt> |
121 | | - <dd>{@$__formattedUserOption}</dd> |
| 121 | + <dd>{unsafe:$__formattedUserOption}</dd> |
122 | 122 | {/if} |
123 | 123 | {/if} |
124 | 124 | {/foreach} |
|
0 commit comments