fade out for not arrived angels

This commit is contained in:
Philip Häusler 2014-12-26 18:59:32 +01:00
parent bd48de258a
commit 77273425f7
1 changed files with 1 additions and 1 deletions

View File

@ -285,7 +285,7 @@ function User_Avatar_render($user) {
* @return string * @return string
*/ */
function User_Nick_render($user_source) { function User_Nick_render($user_source) {
return '<a href="' . page_link_to('users') . '&amp;action=view&amp;user_id=' . $user_source['UID'] . '"><span class="icon-icon_angel"></span> ' . htmlspecialchars($user_source['Nick']) . '</a>'; return '<a class="' . ($user_source['Gekommen'] ? '' : 'text-muted') . '" href="' . page_link_to('users') . '&amp;action=view&amp;user_id=' . $user_source['UID'] . '"><span class="icon-icon_angel"></span> ' . htmlspecialchars($user_source['Nick']) . '</a>';
} }
?> ?>