summaryrefslogtreecommitdiffstats
path: root/templates/show_users.inc
diff options
context:
space:
mode:
Diffstat (limited to 'templates/show_users.inc')
-rw-r--r--templates/show_users.inc6
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\"> &nbsp; </td>";
+ echo "<td class=\"user_online\"> &nbsp; </td>";
} elseif ($user->disabled == 1) {
- echo "<td bgcolor=\"gray\"> &nbsp; </td>";
+ echo "<td class=\"user_disabled\"> &nbsp; </td>";
} else {
- echo "<td bgcolor=\"#7f0000\"> &nbsp; </td>";
+ echo "<td class=\"user_offline\"> &nbsp; </td>";
}
?>
</tr>