summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorLukas Reschke <lukas@owncloud.com>2016-01-11 15:37:08 +0100
committerLukas Reschke <lukas@owncloud.com>2016-01-11 15:37:08 +0100
commit43dbe1cebf71a2b981dc439b7f17727512fcd63a (patch)
treea57688402c8f01da0858774dde5d505ee627d2f4 /lib
parent31435552566833f5c5c354f5a5b611d5a6208a68 (diff)
downloadnextcloud-server-43dbe1cebf71a2b981dc439b7f17727512fcd63a.tar.gz
nextcloud-server-43dbe1cebf71a2b981dc439b7f17727512fcd63a.zip
Revert "Remove unneeded check if htaccess test file already exists"
Diffstat (limited to 'lib')
-rw-r--r--lib/private/util.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/private/util.php b/lib/private/util.php
index ed62f1afb4a..4bcde68c355 100644
--- a/lib/private/util.php
+++ b/lib/private/util.php
@@ -1201,6 +1201,10 @@ class OC_Util {
// creating a test file
$testFile = $config->getSystemValue('datadirectory', OC::$SERVERROOT . '/data') . '/' . $fileName;
+ if (file_exists($testFile)) {// already running this test, possible recursive call
+ return false;
+ }
+
$fp = @fopen($testFile, 'w');
if (!$fp) {
throw new OC\HintException('Can\'t create test file to check for working .htaccess file.',