Browse Source
We dropped it on bug 12561 when removing the non-XSLT view. This feature has never been implemented for XSLT views and the pref must then be removed. Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>21.11/bug30761
4 changed files with 11 additions and 3 deletions
@ -0,0 +1,11 @@ |
|||
use Modern::Perl; |
|||
|
|||
return { |
|||
bug_number => "5229", |
|||
description => "Remove system preference 'OPACItemsResultsDisplay'", |
|||
up => sub { |
|||
my ($args) = @_; |
|||
my ($dbh, $out) = @$args{qw(dbh out)}; |
|||
$dbh->do(q{DELETE FROM systempreferences WHERE variable='OPACItemsResultsDisplay'}); |
|||
}, |
|||
} |
File diff suppressed because one or more lines are too long
Loading…
Reference in new issue