diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-09-24 03:15:05 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-09-24 03:15:05 +0000 |
commit | ae70bce26c2f39da93c85a082602d58dcf13652e (patch) | |
tree | 0bf530733d44216846ad39f245bc238baf174cee /modules | |
parent | cb12b4a8c948d901f6851a7eae032827b423704d (diff) | |
download | ampache-ae70bce26c2f39da93c85a082602d58dcf13652e.tar.gz ampache-ae70bce26c2f39da93c85a082602d58dcf13652e.tar.bz2 ampache-ae70bce26c2f39da93c85a082602d58dcf13652e.zip |
more updates to the theme stuff
Diffstat (limited to 'modules')
-rw-r--r-- | modules/admin.php | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/modules/admin.php b/modules/admin.php index 42e24e48..33cf37d8 100644 --- a/modules/admin.php +++ b/modules/admin.php @@ -42,11 +42,10 @@ function show_access_list () { function show_manage_users () { - echo "<table class=\"text-box\">\n<tr><td>\n"; - echo "<span class=\"header2\">" . _("Manage Users") . "</span><br />\n"; + show_box_top(_('Manage Users')); echo "<p>Use the following tools to manage the users that access your site.</p>\n"; echo "<ul>\n\t<li><a href=\"".conf('web_path') . "/admin/users.php?action=show_add_user\">" . _("Add a new user") . "</a></li>\n</ul>\n"; - echo "</td></tr></table>"; + show_box_bottom(); show_users(); } // show_manage_users() |