diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-04-11 07:33:12 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-04-11 07:33:12 +0000 |
commit | 78ea591e3289aa71e747ea2e04bf120489dc5fd7 (patch) | |
tree | e10242ef5661d67401ad72c087bf4a91c1713209 | |
parent | 0b733c05eed503ba8c00443a77ec45664b81ce28 (diff) | |
download | ampache-78ea591e3289aa71e747ea2e04bf120489dc5fd7.tar.gz ampache-78ea591e3289aa71e747ea2e04bf120489dc5fd7.tar.bz2 ampache-78ea591e3289aa71e747ea2e04bf120489dc5fd7.zip |
remove gz handler cause IE7 sucks the big one
-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) { |