diff options
Diffstat (limited to 'templates/show_users.inc')
-rw-r--r-- | templates/show_users.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/show_users.inc b/templates/show_users.inc index 3c0931e3..da6ecd2f 100644 --- a/templates/show_users.inc +++ b/templates/show_users.inc @@ -139,11 +139,11 @@ while ($results = mysql_fetch_object($db_result)) { </td> <?php if (($user->is_logged_in()) and ($user->is_online())) { - echo "<td bgcolor=\"green\"> </td>"; + echo "<td class=\"user_online\"> </td>"; } elseif ($user->disabled == 1) { - echo "<td bgcolor=\"gray\"> </td>"; + echo "<td class=\"user_disabled\"> </td>"; } else { - echo "<td bgcolor=\"#7f0000\"> </td>"; + echo "<td class=\"user_offline\"> </td>"; } ?> </tr> |