aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVicDeo <dubiniuk@owncloud.com>2013-09-11 05:58:07 -0700
committerVicDeo <dubiniuk@owncloud.com>2013-09-11 05:58:07 -0700
commit62eeac33900bdb13b823049d8cc63f44e0bca24f (patch)
treeea7621e13de13912d2cd9f75bb1a7e2fb07e6f1b
parent68015b276129e3ad5711e92c7b7d93887d72d30f (diff)
parentaf2164bbcb83eaac9534d9d5933d191687de548e (diff)
downloadnextcloud-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-xlib/util.php6
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) {