diff options
author | kondou <kondou@ts.unde.re> | 2013-08-15 08:49:19 +0200 |
---|---|---|
committer | kondou <kondou@ts.unde.re> | 2013-08-15 15:57:32 +0200 |
commit | 9c5416fe4a12acf5631b8822feb942143bf2408f (patch) | |
tree | a9d6297ae8400cdf73b1a48a22391c9fae3cced5 /lib/app.php | |
parent | b9f3bb24261961ead93fb76c1295066cfa666299 (diff) | |
download | nextcloud-server-9c5416fe4a12acf5631b8822feb942143bf2408f.tar.gz nextcloud-server-9c5416fe4a12acf5631b8822feb942143bf2408f.zip |
Clean up \OC\Util
- Use camelCase
- Add some phpdoc
- Fix some indents
- Use some more spacing
Diffstat (limited to 'lib/app.php')
-rw-r--r-- | lib/app.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/app.php b/lib/app.php index 5fa650044f3..2f5a952d9f8 100644 --- a/lib/app.php +++ b/lib/app.php @@ -73,11 +73,11 @@ class OC_App{ if (!defined('DEBUG') || !DEBUG) { if (is_null($types) - && empty(OC_Util::$core_scripts) - && empty(OC_Util::$core_styles)) { - OC_Util::$core_scripts = OC_Util::$scripts; + && empty(OC_Util::$coreScripts) + && empty(OC_Util::$coreStyles)) { + OC_Util::$coreScripts = OC_Util::$scripts; OC_Util::$scripts = array(); - OC_Util::$core_styles = OC_Util::$styles; + OC_Util::$coreStyles = OC_Util::$styles; OC_Util::$styles = array(); } } |