Bug 19768: DBRev 23.12.00.054

Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
This commit is contained in:
Katrin Fischer 2024-05-08 17:53:44 +00:00
parent cc8bf034bc
commit 07d52309c2
Signed by: kfischer
GPG key ID: 0EF6E2C03357A834
2 changed files with 4 additions and 4 deletions

View file

@ -29,7 +29,7 @@ use vars qw{ $VERSION };
# - #4 : the developer version. The 4th number is the database subversion.
# used by developers when the database changes. updatedatabase take care of the changes itself
# and is automatically called by Auth.pm when needed.
$VERSION = "23.12.00.053";
$VERSION = "23.12.00.054";
sub version {
return $VERSION;

View file

@ -3,18 +3,18 @@ use Koha::Installer::Output qw(say_warning say_failure say_success say_info);
return {
bug_number => "19768",
description => "Add 'Title notes' tab to OpacSerialDefaultTab preference",
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 value = 'holdings|serialcollection|subscriptions|titlenotes', options = 'holdings|serialcollection|subscriptions|titlenotes' WHERE variable = 'opacSerialDefaultTab' }
q{ UPDATE systempreferences SET options = 'holdings|serialcollection|subscriptions|titlenotes' WHERE variable = 'opacSerialDefaultTab' }
);
# Print useful stuff here
say $out "Added 'Title notes' option to opacSerialDefaultTab preference";
say $out "Added 'Title notes' option to opacSerialDefaultTab system preference";
},
};