Bug 21330: Allow XSLT for authority detail view in OPAC
[koha.git] / installer / data / mysql / atomicupdate / bug-21330.pl
1 use Modern::Perl;
2
3 return {
4     bug_number => '21330',
5     description => 'Add syspref AuthorityXSLTOpacDetailsDisplay',
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 ('AuthorityXSLTOpacDetailsDisplay','','','Enable XSL stylesheet control over authority results page display on intranet','Free')
13         });
14     },
15 };