diff options
-rw-r--r-- | admin/catalog.php | 3 | ||||
-rw-r--r-- | lib/init.php | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/admin/catalog.php b/admin/catalog.php index 9e82268f..29f3db27 100644 --- a/admin/catalog.php +++ b/admin/catalog.php @@ -1,7 +1,7 @@ <?php /* - Copyright (c) 2001 - 2007 Ampache.org + Copyright (c) Ampache.org All rights reserved. This program is free software; you can redistribute it and/or @@ -19,6 +19,7 @@ */ + require_once '../lib/init.php'; if (!Access::check('interface','100')) { diff --git a/lib/init.php b/lib/init.php index b91b1d9a..58d846db 100644 --- a/lib/init.php +++ b/lib/init.php @@ -25,7 +25,7 @@ // Use output buffering, this gains us a few things and // fixes some CSS issues -ob_start('ob_gzhandler'); +ob_start(); // Do a check for PHP5 because nothing will work without it if (strcmp('5.0.0',phpversion()) > 0) { |