no further comment - which dev did not test this BEFORE submitting the pull request?

which reviewer did not test the pull request?
This commit is contained in:
Thomas Müller 2013-09-11 01:23:37 +02:00
parent a2ade4294c
commit af2164bbcb

View file

@ -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) {