diff options
Diffstat (limited to 'templates/show_users.inc')
-rw-r--r-- | templates/show_users.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/show_users.inc b/templates/show_users.inc index 48eb11a3..6b7d3e14 100644 --- a/templates/show_users.inc +++ b/templates/show_users.inc @@ -116,10 +116,10 @@ while ($results = mysql_fetch_object($db_result)) { <?php //FIXME: Fix this for the extra permission levels if ($user->disabled == '1') { - echo "<td><a href=\"".$web_path."/admin/users.php?action=update&user=$user->username&level=enabled\">" . get_user_icon('disable','enable_hover') . "</a></td>"; + echo "<td><a href=\"".$web_path."/admin/users.php?action=update&user=$user->username&level=enabled\">" . get_user_icon('enable') . "</a></td>"; } else { - echo "<td><a href=\"".$web_path."/admin/users.php?action=update&user=$user->username&level=disabled\">" . get_user_icon('enable','disable_hover') ."</a></td>"; + echo "<td><a href=\"".$web_path."/admin/users.php?action=update&user=$user->username&level=disabled\">" . get_user_icon('disable') ."</a></td>"; } ?> <td> |