summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/exe/css.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/exe/css.php b/lib/exe/css.php
index fb639fc7e..8899ff193 100644
--- a/lib/exe/css.php
+++ b/lib/exe/css.php
@@ -66,9 +66,6 @@ function css_out(){
$config_cascade['userstyle']['screen'] = $config_cascade['userstyle']['default'];
}
- // start output buffering
- ob_start();
-
// Array of needed files and their web locations, the latter ones
// are needed to fix relative paths in the stylesheets
$files = array();
@@ -114,6 +111,9 @@ function css_out(){
http_cached($cache->cache,
$cache->useCache(array('files' => $cache_files)));
+ // start output buffering
+ ob_start();
+
// build the stylesheet
foreach ($mediatypes as $mediatype) {