Better cache settings logic

This commit is contained in:
Max Kostikov 2018-11-29 21:27:06 +01:00
parent 3265c2e543
commit f3831fa77f

View File

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