diff options
author | VicDeo <dubiniuk@owncloud.com> | 2013-09-11 05:58:07 -0700 |
---|---|---|
committer | VicDeo <dubiniuk@owncloud.com> | 2013-09-11 05:58:07 -0700 |
commit | 62eeac33900bdb13b823049d8cc63f44e0bca24f (patch) | |
tree | ea7621e13de13912d2cd9f75bb1a7e2fb07e6f1b | |
parent | 68015b276129e3ad5711e92c7b7d93887d72d30f (diff) | |
parent | af2164bbcb83eaac9534d9d5933d191687de548e (diff) | |
download | nextcloud-server-62eeac33900bdb13b823049d8cc63f44e0bca24f.tar.gz nextcloud-server-62eeac33900bdb13b823049d8cc63f44e0bca24f.zip |
Merge pull request #4798 from owncloud/fixing-variable-typos-master
no further comment - which dev did not test this BEFORE submitting the p...
-rwxr-xr-x | lib/util.php | 6 |
1 files changed, 3 insertions, 3 deletions
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) { |