diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-08-19 07:34:11 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-08-19 07:34:11 +0000 |
commit | d560bb1c7b7e675ad72af0731df18757bf9d5700 (patch) | |
tree | 75bb0a543caecb8779280aadb84cf47c8066f94c /admin | |
parent | f92b79ec098ad56690dce0c615a25dcac3955fba (diff) | |
download | ampache-d560bb1c7b7e675ad72af0731df18757bf9d5700.tar.gz ampache-d560bb1c7b7e675ad72af0731df18757bf9d5700.tar.bz2 ampache-d560bb1c7b7e675ad72af0731df18757bf9d5700.zip |
fixed single downloads and that annoying minor css issue with albums of the moment
Diffstat (limited to 'admin')
-rw-r--r-- | admin/catalog.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/admin/catalog.php b/admin/catalog.php index 34f63522..d65b2c76 100644 --- a/admin/catalog.php +++ b/admin/catalog.php @@ -43,6 +43,7 @@ switch ($_REQUEST['action']) { $catalog = new Catalog(); $_REQUEST['catalogs'] = $catalog->get_catalog_ids(); case 'add_to_catalog': + ob_end_flush(); if (Config::get('demo_mode')) { break; } if ($_REQUEST['catalogs'] ) { foreach ($_REQUEST['catalogs'] as $catalog_id) { @@ -58,6 +59,7 @@ switch ($_REQUEST['action']) { case 'update_all_catalogs': $_REQUEST['catalogs'] = Catalog::get_catalog_ids(); case 'update_catalog': + ob_end_flush(); /* If they are in demo mode stop here */ if (Config::get('demo_mode')) { break; } @@ -73,6 +75,7 @@ switch ($_REQUEST['action']) { show_confirmation($title,$body,$url); break; case 'full_service': + ob_end_flush(); $catalog = new Catalog(); /* Make sure they aren't in demo mode */ if (conf('demo_mode')) { break; } @@ -126,6 +129,7 @@ switch ($_REQUEST['action']) { $catalog = new Catalog(); $_REQUEST['catalogs'] = Catalog::get_catalog_ids(); case 'clean_catalog': + ob_end_flush(); /* If they are in demo mode stop them here */ if (Config::get('demo_mode')) { break; } |