diff options
author | Morris Jobke <morris.jobke@gmail.com> | 2013-10-07 00:36:42 +0200 |
---|---|---|
committer | Morris Jobke <morris.jobke@gmail.com> | 2013-10-07 00:36:42 +0200 |
commit | 09d2ba017e603fe6ac237da7830d86d74b2da61c (patch) | |
tree | 3df161171c7a0bb7725145cad4c26b8f9153f4b6 /core/setup | |
parent | a90ea2c069998d378ec49825ce53b7651a459c1a (diff) | |
download | nextcloud-server-09d2ba017e603fe6ac237da7830d86d74b2da61c.tar.gz nextcloud-server-09d2ba017e603fe6ac237da7830d86d74b2da61c.zip |
fix undefined $htaccessWorking
Diffstat (limited to 'core/setup')
-rw-r--r-- | core/setup/controller.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/setup/controller.php b/core/setup/controller.php index 9b35432f113..679efee81bf 100644 --- a/core/setup/controller.php +++ b/core/setup/controller.php @@ -70,7 +70,6 @@ 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(); } catch (\OC\HintException $e) { @@ -78,6 +77,7 @@ class Controller { 'error' => $e->getMessage(), 'hint' => $e->getHint() ); + $htaccessWorking = false; } return array( |