Merge pull request #11596 from owncloud/in_cli_mode_return_true_for_ishtaccessworking

in cli mode return true for isHtaccessWorking
remotes/origin/fix-10825
Jörn Friedrich Dreyer 12 years ago
commit 7c40261ca9
  1. 2
      lib/private/util.php

@ -986,7 +986,7 @@ class OC_Util {
* file in the data directory and trying to access via http
*/
public static function isHtaccessWorking() {
if (!OC::$server->getConfig()->getSystemValue('check_for_working_htaccess', true)) {
if (\OC::$CLI || !OC::$server->getConfig()->getSystemValue('check_for_working_htaccess', true)) {
return true;
}

Loading…
Cancel
Save