diff options
author | Adam Williamson <awilliam@redhat.com> | 2014-11-06 18:10:43 -0800 |
---|---|---|
committer | Adam Williamson <awilliam@redhat.com> | 2014-11-06 18:10:43 -0800 |
commit | 013feb8da052e7d8f2e1171fb6600d82b3c3ac29 (patch) | |
tree | e7228e5596077ac35df7c3351216c0c747d3cca0 /lib/private/config.php | |
parent | 8b2b0aae31fe084c3f8edbc6b307a39db03211c9 (diff) | |
download | nextcloud-server-013feb8da052e7d8f2e1171fb6600d82b3c3ac29.tar.gz nextcloud-server-013feb8da052e7d8f2e1171fb6600d82b3c3ac29.zip |
writeData(): correct variable name for config file path
It changed since we wrote this patch.
Diffstat (limited to 'lib/private/config.php')
-rw-r--r-- | lib/private/config.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/config.php b/lib/private/config.php index 8bb2a5c48d1..3e7fef44cb9 100644 --- a/lib/private/config.php +++ b/lib/private/config.php @@ -208,7 +208,7 @@ class Config { fclose($filePointer); // Try invalidating the opcache just for the file we wrote... - if (!\OC_Util::deleteFromOpcodeCache($this->configFilename)) { + if (!\OC_Util::deleteFromOpcodeCache($this->configFilePath)) { // But if that doesn't work, clear the whole cache. \OC_Util::clearOpcodeCache(); } |