diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-09-09 04:30:12 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-09-09 04:30:12 +0000 |
commit | 83815169ceb211d4449928b21c02539795f81624 (patch) | |
tree | aaaba2fda75b216c456ce99fd07aa3c98fbd1c24 /admin/index.php | |
parent | b33aa8aec67006e641f2054e01b35a0bba316922 (diff) | |
download | ampache-83815169ceb211d4449928b21c02539795f81624.tar.gz ampache-83815169ceb211d4449928b21c02539795f81624.tar.bz2 ampache-83815169ceb211d4449928b21c02539795f81624.zip |
fixed some +x stuff that shouldnt have been +x and moved the catalog functions back into the content area
Diffstat (limited to 'admin/index.php')
-rw-r--r-- | admin/index.php | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/admin/index.php b/admin/index.php index 2e4d957e..ea2d7e14 100644 --- a/admin/index.php +++ b/admin/index.php @@ -28,6 +28,13 @@ if (!$GLOBALS['user']->has_access(100)) { show_header(); - +switch ($_REQUEST['action']) { + default: + // Show Catalogs + $catalog_ids = Catalog::get_catalogs(); + Browse::set_type('catalog'); + Browse::show_objects($catalog_ids); + break; +} show_footer(); |