diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-12-21 08:22:31 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-12-21 08:22:31 +0000 |
commit | 2493e8eb48c48eeda11095406fdc22004053271a (patch) | |
tree | 8cb5106acd98e83009ac23544593bcff8d442959 /templates/show_users.inc | |
parent | aac50100d3e0d88d06f225cf7a1bff1131099e70 (diff) | |
download | ampache-2493e8eb48c48eeda11095406fdc22004053271a.tar.gz ampache-2493e8eb48c48eeda11095406fdc22004053271a.tar.bz2 ampache-2493e8eb48c48eeda11095406fdc22004053271a.zip |
switched the enable/disable icons and filled out the show_edit_album page, still doesnt work
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> |