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 246-252 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
246
('EmailSMSSendDriverFromAddress', '', '', 'Email SMS send driver from address override', 'Free'),
246
('EmailSMSSendDriverFromAddress', '', '', 'Email SMS send driver from address override', 'Free'),
247
('EnableAdvancedCatalogingEditor','0','','Enable the Rancor advanced cataloging editor','YesNo'),
247
('EnableAdvancedCatalogingEditor','0','','Enable the Rancor advanced cataloging editor','YesNo'),
248
('EnableBorrowerFiles','0',NULL,'If enabled, allows librarians to upload and attach arbitrary files to a borrower record.','YesNo'),
248
('EnableBorrowerFiles','0',NULL,'If enabled, allows librarians to upload and attach arbitrary files to a borrower record.','YesNo'),
249
('EnableElasticsearchSearchResultExport', '1', '', 'Enable search result export', 'YesNo'),
249
('EnableElasticsearchSearchResultExport', '0', '', 'Enable search result export', 'YesNo'),
250
('EnableExpiredPasswordReset', '0', NULL, 'Enable ability for patrons with expired password to reset their password directly', 'YesNo'),
250
('EnableExpiredPasswordReset', '0', NULL, 'Enable ability for patrons with expired password to reset their password directly', 'YesNo'),
251
('EnableItemGroupHolds','0','','Enable item groups holds feature','YesNo'),
251
('EnableItemGroupHolds','0','','Enable item groups holds feature','YesNo'),
252
('EnableItemGroups','0','','Enable the item groups feature','YesNo'),
252
('EnableItemGroups','0','','Enable the item groups feature','YesNo'),
253
- 

Return to bug 27859