aboutsummaryrefslogtreecommitdiffstats
path: root/lib/templatelayout.php
diff options
context:
space:
mode:
authorkondou <kondou@ts.unde.re>2013-08-15 08:49:19 +0200
committerkondou <kondou@ts.unde.re>2013-08-15 15:57:32 +0200
commit9c5416fe4a12acf5631b8822feb942143bf2408f (patch)
treea9d6297ae8400cdf73b1a48a22391c9fae3cced5 /lib/templatelayout.php
parentb9f3bb24261961ead93fb76c1295066cfa666299 (diff)
downloadnextcloud-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/templatelayout.php')
-rw-r--r--lib/templatelayout.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/templatelayout.php b/lib/templatelayout.php
index 0024c9d4960..0b868a39e49 100644
--- a/lib/templatelayout.php
+++ b/lib/templatelayout.php
@@ -58,7 +58,7 @@ class OC_TemplateLayout extends OC_Template {
if (OC_Config::getValue('installed', false) && $renderas!='error') {
$this->append( 'jsfiles', OC_Helper::linkToRoute('js_config') . $versionParameter);
}
- if (!empty(OC_Util::$core_scripts)) {
+ if (!empty(OC_Util::$coreScripts)) {
$this->append( 'jsfiles', OC_Helper::linkToRemoteBase('core.js', false) . $versionParameter);
}
foreach($jsfiles as $info) {
@@ -71,7 +71,7 @@ class OC_TemplateLayout extends OC_Template {
// Add the css files
$cssfiles = self::findStylesheetFiles(OC_Util::$styles);
$this->assign('cssfiles', array());
- if (!empty(OC_Util::$core_styles)) {
+ if (!empty(OC_Util::$coreStyles)) {
$this->append( 'cssfiles', OC_Helper::linkToRemoteBase('core.css', false) . $versionParameter);
}
foreach($cssfiles as $info) {