diff options
author | plegall <plg@piwigo.org> | 2011-07-13 22:03:36 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2011-07-13 22:03:36 +0000 |
commit | 64adb8eac1399f83b867ffae20dfff5dcca80c76 (patch) | |
tree | 9fcb96b4237649884737dfd439b969d05d17a3bb /include/config_default.inc.php | |
parent | aefd941d758b7a5f471236f9108b2e443c5f5d79 (diff) |
merge r11738 from branch 2.2 to trunk
bug 2375 fixed: ability to deactivate representative cache on sub-albums (['representative_cache_on_subcats']) or when searching for another representative due to privacy level (['representative_cache_on_level'])
git-svn-id: http://piwigo.org/svn/trunk@11739 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | include/config_default.inc.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/config_default.inc.php b/include/config_default.inc.php index f6f02be99..c57929471 100644 --- a/include/config_default.inc.php +++ b/include/config_default.inc.php @@ -222,6 +222,18 @@ $conf['display_fromto'] = false; // Maintenance]. $conf['allow_random_representative'] = false; +// representative_cache_on_level: if a thumbnail is chosen as representative +// but has higher privacy level than current user, Piwigo randomly selects +// another thumbnail. Should be store this thumbnail in cache to avoid +// another consuming SQL query on next page refresh? +$conf['representative_cache_on_level'] = true; + +// representative_cache_on_subcats: if a category (= album) only contains +// sub-categories, Piwigo randomly selects a thumbnail among sub-categories +// representative. Should we store this thumbnail in cache to avoid another +// "slightly" consuming SQL query on next page refresh? +$conf['representative_cache_on_subcats'] = true; + // allow_html_descriptions : authorize administrators to use HTML in // category and element description. $conf['allow_html_descriptions'] = true; |