Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2014-02-20 17:18:01 +0400
committerThomas Müller <thomas.mueller@tmit.eu>2014-02-20 17:18:01 +0400
commitfbea02bebb561f7a76a876065066c9face6e484e (patch)
treec51592fc8a02e76bbc1ac68c31cd628dfd2154ac /lib/private/app.php
parent01929096fed3be1689e7b0e53ab4b6a49791901f (diff)
kill $coreStyles and $coreScripts
Diffstat (limited to 'lib/private/app.php')
-rw-r--r--lib/private/app.php11
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;
}