View | Details | Raw Unified | Return to bug 27859
Collapse All | Expand All

(-)a/installer/data/mysql/atomicupdate/bug_27859-add_enable_search_result_marc_export_sysprefs.pl (-1 / +1 lines)
Lines 7-13 return { Link Here
7
        my ($args) = @_;
7
        my ($args) = @_;
8
        my ($dbh, $out) = @$args{qw(dbh out)};
8
        my ($dbh, $out) = @$args{qw(dbh out)};
9
9
10
        $dbh->do(q{ INSERT IGNORE INTO systempreferences (variable, value, options, explanation, type) VALUES ('EnableElasticsearchSearchResultExport', '1', NULL, 'Enable search result export', 'YesNo') });
10
        $dbh->do(q{ INSERT IGNORE INTO systempreferences (variable, value, options, explanation, type) VALUES ('EnableElasticsearchSearchResultExport', '0', NULL, 'Enable search result export', 'YesNo') });
11
        say $out "Added new system preference 'EnableElasticsearchSearchResultExport'";
11
        say $out "Added new system preference 'EnableElasticsearchSearchResultExport'";
12
12
13
        $dbh->do(q{ INSERT IGNORE INTO systempreferences (variable, value, options, explanation, type) VALUES ('ElasticsearchSearchResultExportCustomFormats', '', NULL, 'Search result export custom formats', 'textarea') });
13
        $dbh->do(q{ INSERT IGNORE INTO systempreferences (variable, value, options, explanation, type) VALUES ('ElasticsearchSearchResultExportCustomFormats', '', NULL, 'Search result export custom formats', 'textarea') });
(-)a/installer/data/mysql/mandatory/sysprefs.sql (-2 / +1 lines)
Lines 257-263 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
257
('EnableAdvancedCatalogingEditor','0','','Enable the Rancor advanced cataloging editor','YesNo'),
257
('EnableAdvancedCatalogingEditor','0','','Enable the Rancor advanced cataloging editor','YesNo'),
258
('EnableBooking','1',NULL,'If enabled, activate every functionnalities related with Bookings module','YesNo'),
258
('EnableBooking','1',NULL,'If enabled, activate every functionnalities related with Bookings module','YesNo'),
259
('EnableBorrowerFiles','0',NULL,'If enabled, allows librarians to upload and attach arbitrary files to a borrower record.','YesNo'),
259
('EnableBorrowerFiles','0',NULL,'If enabled, allows librarians to upload and attach arbitrary files to a borrower record.','YesNo'),
260
('EnableElasticsearchSearchResultExport', '1', '', 'Enable search result export', 'YesNo'),
260
('EnableElasticsearchSearchResultExport', '0', '', 'Enable search result export', 'YesNo'),
261
('EnableExpiredPasswordReset', '0', NULL, 'Enable ability for patrons with expired password to reset their password directly', 'YesNo'),
261
('EnableExpiredPasswordReset', '0', NULL, 'Enable ability for patrons with expired password to reset their password directly', 'YesNo'),
262
('EnableItemGroupHolds','0','','Enable item groups holds feature','YesNo'),
262
('EnableItemGroupHolds','0','','Enable item groups holds feature','YesNo'),
263
('EnableItemGroups','0','','Enable the item groups feature','YesNo'),
263
('EnableItemGroups','0','','Enable the item groups feature','YesNo'),
264
- 

Return to bug 27859