diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-02-20 14:18:01 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-02-20 14:18:01 +0100 |
commit | fbea02bebb561f7a76a876065066c9face6e484e (patch) | |
tree | c51592fc8a02e76bbc1ac68c31cd628dfd2154ac /lib/private/app.php | |
parent | 01929096fed3be1689e7b0e53ab4b6a49791901f (diff) | |
download | nextcloud-server-fbea02bebb561f7a76a876065066c9face6e484e.tar.gz nextcloud-server-fbea02bebb561f7a76a876065066c9face6e484e.zip |
kill $coreStyles and $coreScripts
Diffstat (limited to 'lib/private/app.php')
-rw-r--r-- | lib/private/app.php | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/lib/private/app.php b/lib/private/app.php index 47f983cce35..048d4d4aeb1 100644 --- a/lib/private/app.php +++ b/lib/private/app.php @@ -69,17 +69,6 @@ class OC_App{ } ob_end_clean(); - if (!defined('DEBUG') || !DEBUG) { - if (is_null($types) - && empty(OC_Util::$coreScripts) - && empty(OC_Util::$coreStyles)) { - OC_Util::$coreScripts = OC_Util::$scripts; - OC_Util::$scripts = array(); - OC_Util::$coreStyles = OC_Util::$styles; - OC_Util::$styles = array(); - } - } - // return return true; } |