From 516a6d7441e6047c1e1f4d9a1acfb7dc943f72aa Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Wed, 6 Jan 2016 09:37:18 +0100 Subject: [PATCH] Remove unneeded check if htaccess test file already exists * fixes #20199 --- lib/private/util.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lib/private/util.php b/lib/private/util.php index c9738b29ca1..5a3347ee910 100644 --- a/lib/private/util.php +++ b/lib/private/util.php @@ -1215,10 +1215,6 @@ 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.',