diff options
author | ringmaster <epithet@gmail.com> | 2014-05-30 09:42:41 -0400 |
---|---|---|
committer | ringmaster <epithet@gmail.com> | 2014-05-30 09:42:41 -0400 |
commit | 16ae63bdfd8556dceb251fd284dc97d330ca8092 (patch) | |
tree | cd5378e877c3908f11f28b459fcea083b1e17502 /config | |
parent | f79948f519f5532f95fd744b8ba28329cc45b022 (diff) | |
download | nextcloud-server-16ae63bdfd8556dceb251fd284dc97d330ca8092.tar.gz nextcloud-server-16ae63bdfd8556dceb251fd284dc97d330ca8092.zip |
Updates per comments on PR:
* Use "filesystem_cache_readonly" config setting, update comment in config.sample
* Use $this->cacheActive to cache config setting
* Add public Scanner::setCacheActive() to set $cacheActive programmatically
Diffstat (limited to 'config')
-rwxr-xr-x | config/config.sample.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index 8fb782e7cf4..e2b4c9b31ab 100755 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -293,7 +293,7 @@ $CONFIG = array( */ 'filesystem_check_changes' => 1, -/* specifies whether changes in the filesystem outside of owncloud affect cached data about those files */ -'filesystem_check_enable' => 1, +/* If true, prevent owncloud from changing the cache due to changes in the filesystem for all storage */ +'filesystem_cache_readonly' => false, ); |