Ignore:
Timestamp:
Jul 14, 2011, 12:02:49 AM (13 years ago)
Author:
plg
Message:

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)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2/include/config_default.inc.php

    r11190 r11738  
    252252// Maintenance].
    253253$conf['allow_random_representative'] = false;
     254
     255// representative_cache_on_level: if a thumbnail is chosen as representative
     256// but has higher privacy level than current user, Piwigo randomly selects
     257// another thumbnail. Should be store this thumbnail in cache to avoid
     258// another consuming SQL query on next page refresh?
     259$conf['representative_cache_on_level'] = true;
     260
     261// representative_cache_on_subcats: if a category (= album) only contains
     262// sub-categories, Piwigo randomly selects a thumbnail among sub-categories
     263// representative. Should we store this thumbnail in cache to avoid another
     264// "slightly" consuming SQL query on next page refresh?
     265$conf['representative_cache_on_subcats'] = true;
    254266
    255267// allow_html_descriptions : authorize administrators to use HTML in
Note: See TracChangeset for help on using the changeset viewer.