From 013feb8da052e7d8f2e1171fb6600d82b3c3ac29 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Thu, 6 Nov 2014 18:10:43 -0800 Subject: [PATCH] writeData(): correct variable name for config file path It changed since we wrote this patch. --- lib/private/config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); } -- 2.39.5