Browse Source

Have disabled icon actually say "Disabled" (Upstream)

spaghetti 8 years ago
parent
commit
f45cfdf2ce
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      classes/users.class.php

+ 1
- 1
classes/users.class.php View File

490
           . '><img src="'.STATIC_SERVER.'common/symbols/warned.png" alt="Warned" title="Warned'
490
           . '><img src="'.STATIC_SERVER.'common/symbols/warned.png" alt="Warned" title="Warned'
491
           . (G::$LoggedUser['ID'] === $UserID ? ' - Expires ' . date('Y-m-d H:i', strtotime($UserInfo['Warned'])) : '')
491
           . (G::$LoggedUser['ID'] === $UserID ? ' - Expires ' . date('Y-m-d H:i', strtotime($UserInfo['Warned'])) : '')
492
           . '" class="tooltip" /></a>' : '';
492
           . '" class="tooltip" /></a>' : '';
493
-    $Str .= ($IsEnabled && $UserInfo['Enabled'] == 2) ? '<a href="rules.php"><img src="'.STATIC_SERVER.'common/symbols/disabled.png" alt="Banned" title="Be good, and you won\'t end up like this user" class="tooltip" /></a>' : '';
493
+    $Str .= ($IsEnabled && $UserInfo['Enabled'] == 2) ? '<a href="rules.php"><img src="'.STATIC_SERVER.'common/symbols/disabled.png" alt="Banned" title="Disabled" class="tooltip" /></a>' : '';
494
 
494
 
495
     if ($Badges) {
495
     if ($Badges) {
496
       $ClassesDisplay = array();
496
       $ClassesDisplay = array();

Loading…
Cancel
Save