summaryrefslogtreecommitdiffstats
path: root/core/setup
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2013-09-24 00:44:55 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2013-09-24 00:44:55 +0200
commit071b8033cb59a3ed51925374e78790ecfa7a2fac (patch)
tree43e9884d571d85d1b8c43517dd216a842eb7e1cb /core/setup
parenta3705ce188ec900574e195e574c80d531846f0f4 (diff)
downloadnextcloud-server-071b8033cb59a3ed51925374e78790ecfa7a2fac.tar.gz
nextcloud-server-071b8033cb59a3ed51925374e78790ecfa7a2fac.zip
fixing typo on $htaccessWorking - testing own code before pushing is appreciated
Diffstat (limited to 'core/setup')
-rw-r--r--core/setup/controller.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/setup/controller.php b/core/setup/controller.php
index 8ddcf19bb6d..e1ad9d60e8b 100644
--- a/core/setup/controller.php
+++ b/core/setup/controller.php
@@ -64,8 +64,9 @@ class Controller {
// Protect data directory here, so we can test if the protection is working
\OC_Setup::protectDataDirectory();
+ $htaccessWorking = false;
try {
- $htaccessworking = \OC_Util::isHtAccessWorking();
+ $htaccessWorking = \OC_Util::isHtAccessWorking();
} catch (\OC\HintException $e) {
$errors[] = array(
'error' => $e->getMessage(),