Koha/installer/data/mysql/db_revs/220600073.pl
Tomas Cohen Arazi 60f717bfcf
Bug 30036: Fix db_rev permissions
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
2022-10-27 18:19:27 -03:00

15 lines
497 B
Perl
Executable file

use Modern::Perl;
return {
bug_number => '30036',
description => 'Add syspref AuthorityXSLTOpacResultsDisplay',
up => sub {
my ($args) = @_;
my ($dbh, $out) = @$args{qw(dbh out)};
$dbh->do(q{
INSERT IGNORE INTO systempreferences (`variable`, `value`, `options`, `explanation`, `type`)
VALUES ('AuthorityXSLTOpacResultsDisplay','','','Enable XSL stylesheet control over authority results page in the OPAC','Free')
});
},
};