diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-11-04 16:16:55 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-11-04 16:16:55 +0000 |
commit | f6cc5f19d2d3746a1adae1b3f7cd4e784127f02c (patch) | |
tree | c84932cee06a39cc1a08389990747506b5e3019b /admin | |
parent | 0665818aeaf221e1b60fe8bc1de71b12270122de (diff) | |
download | ampache-f6cc5f19d2d3746a1adae1b3f7cd4e784127f02c.tar.gz ampache-f6cc5f19d2d3746a1adae1b3f7cd4e784127f02c.tar.bz2 ampache-f6cc5f19d2d3746a1adae1b3f7cd4e784127f02c.zip |
fixed catalog_update bin file and fixed a conf() reference on update all on admin catalog stuff
Diffstat (limited to 'admin')
-rw-r--r-- | admin/catalog.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/catalog.php b/admin/catalog.php index 0c9b8fad..7e37c32e 100644 --- a/admin/catalog.php +++ b/admin/catalog.php @@ -74,7 +74,7 @@ switch ($_REQUEST['action']) { ob_end_flush(); $catalog = new Catalog(); /* Make sure they aren't in demo mode */ - if (conf('demo_mode')) { break; } + if (Config::get('demo_mode')) { break; } if (!$_REQUEST['catalogs']) { $_REQUEST['catalogs'] = $catalog->get_catalog_ids(); |