]> source.dussan.org Git - nextcloud-server.git/commitdiff
changed variables to lowercase
authorVincent Chan <plus.vincchan@gmail.com>
Tue, 2 Feb 2016 09:32:50 +0000 (10:32 +0100)
committerVincent Chan <plus.vincchan@gmail.com>
Tue, 2 Feb 2016 09:32:50 +0000 (10:32 +0100)
core/js/config.php

index 0eb059051c9798051c42570c8b2911cdb6a11b95..aac7630a1d882a1d74d4f9ccb0d058dbc3ecebe9 100644 (file)
@@ -62,17 +62,17 @@ if ($defaultExpireDateEnabled) {
 }
 $outgoingServer2serverShareEnabled = $config->getAppValue('files_sharing', 'outgoing_server2server_share_enabled', 'yes') === 'yes';
 
-$CountOfDataLocation = 0;
+$countOfDataLocation = 0;
 
-$DataLocation = str_replace(OC::$SERVERROOT .'/', '', $config->getSystemValue('datadirectory', ''), $CountOfDataLocation);
-if($CountOfDataLocation !== 1 || !OC_User::isAdminUser(OC_User::getUser())){
-       $DataLocation = false;
+$dataLocation = str_replace(OC::$SERVERROOT .'/', '', $config->getSystemValue('datadirectory', ''), $countOfDataLocation);
+if($countOfDataLocation !== 1 || !OC_User::isAdminUser(OC_User::getUser())){
+       $dataLocation = false;
 }
 
 $array = array(
        "oc_debug" => $config->getSystemValue('debug', false) ? 'true' : 'false',
        "oc_isadmin" => OC_User::isAdminUser(OC_User::getUser()) ? 'true' : 'false',
-       "oc_dataURL" => is_string($DataLocation) ? "\"".$DataLocation."\"" : 'false',
+       "oc_dataURL" => is_string($dataLocation) ? "\"".$dataLocation."\"" : 'false',
        "oc_webroot" => "\"".OC::$WEBROOT."\"",
        "oc_appswebroots" =>  str_replace('\\/', '/', json_encode($apps_paths)), // Ugly unescape slashes waiting for better solution
        "datepickerFormatDate" => json_encode($l->l('jsdate', null)),