Bug 30036: (QA follow-up) Move system preference to OPAC tab
[koha.git] / installer / data / mysql / atomicupdate / bug-30036.pl
1 use Modern::Perl;
2
3 return {
4     bug_number => '30036',
5     description => 'Add syspref AuthorityXSLTOpacResultsDisplay',
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 };