fixes #1221 optionnaly include photos from sub-albums of an album matching the search request.

* use configuration setting quick_search_include_sub_albums (default=false) to activate this feature.
* the list of sub-albums is not displayed in the list of album results (to avoid too long lists).
This commit is contained in:
plegall 2020-10-30 17:58:12 +01:00
parent d343959372
commit 1be34f33a4
2 changed files with 19 additions and 1 deletions

View file

@ -850,6 +850,12 @@ $conf['batch_manager_images_per_page_unit'] = 5;
// how many missing md5sum should Piwigo compute at once.
$conf['checksum_compute_blocksize'] = 50;
// quicksearch engine: include all photos from sub-albums of any matching
// album. For example, if search is "bear", then we display photos from
// "bear/grizzly". When value changed, delete database cache files in
// _data/cache directory
$conf['quick_search_include_sub_albums'] = false;
// +-----------------------------------------------------------------------+
// | log |
// +-----------------------------------------------------------------------+