summaryrefslogtreecommitdiffstats
path: root/lib/class/browse.class.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2007-09-09 04:30:12 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2007-09-09 04:30:12 +0000
commit83815169ceb211d4449928b21c02539795f81624 (patch)
treeaaaba2fda75b216c456ce99fd07aa3c98fbd1c24 /lib/class/browse.class.php
parentb33aa8aec67006e641f2054e01b35a0bba316922 (diff)
downloadampache-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.php6
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;