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 /lib/class/browse.class.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 'lib/class/browse.class.php')
-rw-r--r-- | lib/class/browse.class.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/class/browse.class.php b/lib/class/browse.class.php index 0cc75d31..b7a54757 100644 --- a/lib/class/browse.class.php +++ b/lib/class/browse.class.php @@ -101,6 +101,7 @@ class Browse { case 'user': case 'playlist': case 'song': + case 'catalog': case 'album': case 'artist': case 'genre': @@ -474,6 +475,11 @@ class Browse { require_once Config::get('prefix') . '/templates/show_playlists.inc.php'; show_box_bottom(); break; + case 'catalog': + show_box_top(_('Catalogs')); + require_once Config::get('prefix') . '/templates/show_catalogs.inc.php'; + show_box_bottom(); + break; default: // Rien a faire break; |