aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Photo.php
diff options
context:
space:
mode:
Diffstat (limited to 'Zotlabs/Module/Photo.php')
-rw-r--r--Zotlabs/Module/Photo.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/Zotlabs/Module/Photo.php b/Zotlabs/Module/Photo.php
index b8d1c36f2..d85db7307 100644
--- a/Zotlabs/Module/Photo.php
+++ b/Zotlabs/Module/Photo.php
@@ -32,10 +32,10 @@ class Photo extends \Zotlabs\Web\Controller {
}
$cache_mode = array(
- 'on' => false, // Cache off
- 'age' => 86400, // max-age
- 'exp' => true, // Use own max-age
- 'leak' => false // Do not allow non members use our cache
+ 'on' => get_config('system','photo_cache_enable', 0),
+ 'age' => 86400,
+ 'exp' => true,
+ 'leak' => false
);
call_hooks('cache_mode_hook', $cache_mode);