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 /lib/init.php | |
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 'lib/init.php')
-rw-r--r-- | lib/init.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/init.php b/lib/init.php index fdbabe45..147d2581 100644 --- a/lib/init.php +++ b/lib/init.php @@ -23,6 +23,10 @@ * DO NOT EDIT THIS FILE ***/ +// Use output buffering, this gains us a few things and +// fixes some CSS issues +ob_start(); + // Set the Error level manualy... I'm to lazy to fix notices error_reporting(E_ALL ^ E_NOTICE); |