issue #1955 search in this set (an album or some tags)

This commit is contained in:
plegall
2023-08-12 16:49:42 +02:00
parent 3c5c62869a
commit 2c3b6ba6ec
12 changed files with 100 additions and 2 deletions

View File

@@ -75,3 +75,5 @@ INSERT INTO piwigo_config (param,value) VALUES ('picture_caddie_icon','true');
INSERT INTO piwigo_config (param,value) VALUES ('picture_representative_icon','true');
INSERT INTO piwigo_config (param,value) VALUES ('show_mobile_app_banner_in_admin','true');
INSERT INTO piwigo_config (param,value) VALUES ('show_mobile_app_banner_in_gallery','false');
INSERT INTO piwigo_config (param,value) VALUES ('index_search_in_set_button','true');
INSERT INTO piwigo_config (param,value) VALUES ('index_search_in_set_action','true');

View File

@@ -0,0 +1,21 @@
<?php
// +-----------------------------------------------------------------------+
// | This file is part of Piwigo. |
// | |
// | For copyright and license information, please view the COPYING.txt |
// | file that was distributed with this source code. |
// +-----------------------------------------------------------------------+
if (!defined('PHPWG_ROOT_PATH'))
{
die('Hacking attempt!');
}
$upgrade_description = 'add config parameters to display "search in this set" action and button';
conf_update_param('index_search_in_set_button', true);
conf_update_param('index_search_in_set_action', true);
echo "\n".$upgrade_description."\n";
?>