mirror of
https://github.com/Piwigo/Piwigo.git
synced 2025-04-27 03:39:57 +03:00
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:
parent
d343959372
commit
1be34f33a4
2 changed files with 19 additions and 1 deletions
|
@ -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 |
|
||||
// +-----------------------------------------------------------------------+
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue