From: Thomas Müller Date: Tue, 10 Sep 2013 23:23:37 +0000 (+0200) Subject: no further comment - which dev did not test this BEFORE submitting the pull request? X-Git-Tag: v6.0.0alpha2~189^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=af2164bbcb83eaac9534d9d5933d191687de548e;p=nextcloud-server.git no further comment - which dev did not test this BEFORE submitting the pull request? which reviewer did not test the pull request? --- diff --git a/lib/util.php b/lib/util.php index 0777643a952..41f5f1d16be 100755 --- a/lib/util.php +++ b/lib/util.php @@ -689,8 +689,8 @@ class OC_Util { return false; } - $fp = @fopen($testfile, 'w'); - @fwrite($fp, $testcontent); + $fp = @fopen($testFile, 'w'); + @fwrite($fp, $testContent); @fclose($fp); // accessing the file via http @@ -700,7 +700,7 @@ class OC_Util { @fclose($fp); // cleanup - @unlink($testfile); + @unlink($testFile); // does it work ? if($content==$testContent) {