writeData(): correct variable name for config file path

It changed since we wrote this patch.
This commit is contained in:
Adam Williamson 2014-11-06 18:10:43 -08:00
parent 8b2b0aae31
commit 013feb8da0
1 changed files with 1 additions and 1 deletions

View File

@ -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();
}