diff options
author | Michael Gapczynski <mtgap@owncloud.com> | 2013-05-25 11:25:43 -0400 |
---|---|---|
committer | Michael Gapczynski <mtgap@owncloud.com> | 2013-05-25 11:25:43 -0400 |
commit | 0a29d2029a719d42f347edb95bd6486c2ab842a8 (patch) | |
tree | 3936a54c91eb03bdaab0334f48ab4af3406594ef /lib/config.php | |
parent | c62f230ddb4304faa9455e849b393693fc9b14aa (diff) | |
download | nextcloud-server-0a29d2029a719d42f347edb95bd6486c2ab842a8.tar.gz nextcloud-server-0a29d2029a719d42f347edb95bd6486c2ab842a8.zip |
Clear opcode caches after writing to the config file, fixes #3372
Diffstat (limited to 'lib/config.php')
-rw-r--r-- | lib/config.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/config.php b/lib/config.php index 9b87d4ce4e5..3cbb89fb981 100644 --- a/lib/config.php +++ b/lib/config.php @@ -187,7 +187,7 @@ class OC_Config{ } // Prevent others not to read the config @chmod($filename, 0640); - + OC_Util::clearOpcodeCache(); return true; } } |