diff options
author | Bart Visscher <bartv@thisnet.nl> | 2012-06-18 11:33:24 +0200 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2012-06-18 11:33:24 +0200 |
commit | 977cd0df6b502c1a15147c1641fea754128a0875 (patch) | |
tree | 25f1949eb75a6ce7fec35b77327f91843f7e4464 /lib/base.php | |
parent | a5a1a9fd4a2f1cd5f2457ba3ab0ceb432da1be33 (diff) | |
download | nextcloud-server-977cd0df6b502c1a15147c1641fea754128a0875.tar.gz nextcloud-server-977cd0df6b502c1a15147c1641fea754128a0875.zip |
Fix errors for minimizer
Diffstat (limited to 'lib/base.php')
-rw-r--r-- | lib/base.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/base.php b/lib/base.php index 30f7e5bba63..94ae26c4d1b 100644 --- a/lib/base.php +++ b/lib/base.php @@ -282,7 +282,7 @@ class OC{ if(substr(OC::$REQUESTEDFILE, -3) == 'css'){ $file = 'apps/' . OC::$REQUESTEDAPP . '/' . OC::$REQUESTEDFILE; $minimizer = new OC_Minimizer_CSS(); - $minimizer->output(array(array(OC::$APPSROOT, OC::$APPSWEBROOT, $file))); + $minimizer->output(array(array(OC::$APPSROOT, OC::$APPSWEBROOT, $file)), $file); exit; }elseif(substr(OC::$REQUESTEDFILE, -3) == 'php'){ require_once(OC::$APPSROOT . '/apps/' . OC::$REQUESTEDAPP . '/' . OC::$REQUESTEDFILE); |