Merge pull request #4798 from owncloud/fixing-variable-typos-master

no further comment - which dev did not test this BEFORE submitting the p...
This commit is contained in:
VicDeo 2013-09-11 05:58:07 -07:00
commit 62eeac3390
1 changed files with 3 additions and 3 deletions

View File

@ -689,8 +689,8 @@ class OC_Util {
return false; return false;
} }
$fp = @fopen($testfile, 'w'); $fp = @fopen($testFile, 'w');
@fwrite($fp, $testcontent); @fwrite($fp, $testContent);
@fclose($fp); @fclose($fp);
// accessing the file via http // accessing the file via http
@ -700,7 +700,7 @@ class OC_Util {
@fclose($fp); @fclose($fp);
// cleanup // cleanup
@unlink($testfile); @unlink($testFile);
// does it work ? // does it work ?
if($content==$testContent) { if($content==$testContent) {