20 lines
662 B
Perl
Executable file
20 lines
662 B
Perl
Executable file
use Modern::Perl;
|
|
use Koha::Installer::Output qw(say_warning say_failure say_success say_info);
|
|
|
|
return {
|
|
bug_number => "19768",
|
|
description => "Add 'Title notes' tab to OpacSerialDefaultTab system preference",
|
|
up => sub {
|
|
my ($args) = @_;
|
|
my ( $dbh, $out ) = @$args{qw(dbh out)};
|
|
|
|
# Do you stuffs here
|
|
$dbh->do(
|
|
q{ UPDATE systempreferences SET options = 'holdings|serialcollection|subscriptions|titlenotes' WHERE variable = 'opacSerialDefaultTab' }
|
|
);
|
|
|
|
# Print useful stuff here
|
|
say $out "Added 'Title notes' option to opacSerialDefaultTab system preference";
|
|
|
|
},
|
|
};
|