diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-06-01 04:36:07 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-06-01 04:36:07 +0000 |
commit | 7603e48e9e7f953e67e62143686c1b5228262385 (patch) | |
tree | 36453345f1bf6a1d5237fb1e3771de257de98ce4 /admin | |
parent | 4345f0785c81fbf9b067fa317399c067c674c65b (diff) | |
download | ampache-7603e48e9e7f953e67e62143686c1b5228262385.tar.gz ampache-7603e48e9e7f953e67e62143686c1b5228262385.tar.bz2 ampache-7603e48e9e7f953e67e62143686c1b5228262385.zip |
tweaked the sidebars, think they look a lot better now
Diffstat (limited to 'admin')
-rw-r--r-- | admin/catalog.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/admin/catalog.php b/admin/catalog.php index 8428730c..6da5ce87 100644 --- a/admin/catalog.php +++ b/admin/catalog.php @@ -62,7 +62,7 @@ switch ($_REQUEST['action']) { $_REQUEST['catalogs'] = $catalog->get_catalog_ids(); case 'update_catalog': /* If they are in demo mode stop here */ - if (conf('demo_mode')) { break; } + if (Config::get('demo_mode')) { break; } if (isset($_REQUEST['catalogs'])) { foreach ($_REQUEST['catalogs'] as $catalog_id) { @@ -72,7 +72,7 @@ switch ($_REQUEST['action']) { echo "</div>\n"; } } - $url = conf('web_path') . '/admin/index.php'; + $url = Config::get('web_path') . '/admin/index.php'; $title = _('Catalog Updated'); $body = ''; show_confirmation($title,$body,$url); |