Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2013-09-11 03:23:37 +0400
committerThomas Müller <thomas.mueller@tmit.eu>2013-09-11 03:23:37 +0400
commitaf2164bbcb83eaac9534d9d5933d191687de548e (patch)
tree5285d95a1f227166da29cb057c6a74a6a296de86 /lib/util.php
parenta2ade4294cae84f592ad32a21b1d3beaa696844f (diff)
no further comment - which dev did not test this BEFORE submitting the pull request?
which reviewer did not test the pull request?
Diffstat (limited to 'lib/util.php')
-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) {