diff options
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() |