]> git.koha-community.org Git - koha.git/blob - installer/data/mysql/db_revs/220600073.pl
Increment version for 22.11.12 release
[koha.git] / installer / data / mysql / db_revs / 220600073.pl
1 use Modern::Perl;
2
3 return {
4     bug_number => '30036',
5     description => 'Add XSLT for authority results view in OPAC',
6     up => sub {
7         my ($args) = @_;
8         my ($dbh, $out) = @$args{qw(dbh out)};
9
10         $dbh->do(q{
11             INSERT IGNORE INTO systempreferences (`variable`, `value`, `options`, `explanation`, `type`)
12             VALUES ('AuthorityXSLTOpacResultsDisplay','','','Enable XSL stylesheet control over authority results page in the OPAC','Free')
13         });
14
15         say $out "Added new system preference 'AuthorityXSLTOpacResultsDisplay'";
16     },
17 };