diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2005-06-10 04:28:39 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2005-06-10 04:28:39 +0000 |
commit | ab8c8b63c65f3c3aa01b7ae64900d764718ff986 (patch) | |
tree | 94986a14bba2a5f8480f04f7d3cf526e28f70ce9 /admin | |
parent | cde6ad2720297448ee8f7e033ac8f26801e69d81 (diff) | |
download | ampache-ab8c8b63c65f3c3aa01b7ae64900d764718ff986.tar.gz ampache-ab8c8b63c65f3c3aa01b7ae64900d764718ff986.tar.bz2 ampache-ab8c8b63c65f3c3aa01b7ae64900d764718ff986.zip |
fix and new preference for footer menu
Diffstat (limited to 'admin')
-rw-r--r-- | admin/access.php | 8 | ||||
-rw-r--r-- | admin/catalog.php | 7 | ||||
-rw-r--r-- | admin/index.php | 6 | ||||
-rw-r--r-- | admin/mail.php | 6 | ||||
-rw-r--r-- | admin/preferences.php | 4 | ||||
-rw-r--r-- | admin/users.php | 7 |
6 files changed, 6 insertions, 32 deletions
diff --git a/admin/access.php b/admin/access.php index 31793907..ec27d1d9 100644 --- a/admin/access.php +++ b/admin/access.php @@ -75,11 +75,5 @@ else { } echo "<br /><br />"; -show_admin_menu('Access Lists'); -show_menu_items('Admin'); - +show_page_footer ('Admin', 'Access Lists',$user->prefs['display_menu']); ?> - - -</body> -</html> diff --git a/admin/catalog.php b/admin/catalog.php index d3c4bc6d..bc2787c1 100644 --- a/admin/catalog.php +++ b/admin/catalog.php @@ -273,10 +273,5 @@ switch ($_REQUEST['action']) { } // end switch echo "<br /><br />"; -show_admin_menu('Catalog'); -show_menu_items('Admin'); - +show_page_footer ('Admin', 'Catalog',$user->prefs['display_menu']); ?> - -</body> -</html> diff --git a/admin/index.php b/admin/index.php index a830897a..e01e00eb 100644 --- a/admin/index.php +++ b/admin/index.php @@ -88,9 +88,5 @@ else { } // if they didn't pick anything echo "<br /><br />"; -show_admin_menu(''); -show_menu_items('Admin'); +show_page_footer ('Admin', '',$user->prefs['display_menu']); ?> - -</body> -</html> diff --git a/admin/mail.php b/admin/mail.php index d5aef413..8c656896 100644 --- a/admin/mail.php +++ b/admin/mail.php @@ -131,9 +131,5 @@ show_clear(); </form> <br /><br /> <?php - show_admin_menu('Mail Users'); - show_menu_items('Admin'); +show_page_footer ('Admin', 'Mail Users',$user->prefs['display_menu']); ?> - -</body> -</html> diff --git a/admin/preferences.php b/admin/preferences.php index 2fa729eb..ba381f44 100644 --- a/admin/preferences.php +++ b/admin/preferences.php @@ -86,7 +86,5 @@ require (conf('prefix') . "/templates/show_preferences.inc"); // FOOTER -show_admin_menu('Admin Preferences'); -show_menu_items('Admin'); - +show_page_footer ('Admin', 'Admin Preferences',$user->prefs['display_menu']); ?> diff --git a/admin/users.php b/admin/users.php index 350d1289..fddf5333 100644 --- a/admin/users.php +++ b/admin/users.php @@ -172,10 +172,5 @@ switch ($action) { } echo "<br /><br />"; -show_admin_menu('Users'); -show_menu_items('Admin'); - +show_page_footer ('Admin', 'Users',$user->prefs['display_menu']); ?> - -</body> -</html> |