Koha/installer/data/mysql/db_revs/231200056.pl
Katrin Fischer 2b3ad46f97
Bug 35149: DBRev 23.12.00.056
Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
2024-05-13 10:36:09 +02:00

17 lines
676 B
Perl
Executable file

use Modern::Perl;
return {
bug_number => "35149",
description => "Add 'do nothing' option to CircAutoPrintQuickSlip syspref explanation",
up => sub {
my ($args) = @_;
my ( $dbh, $out ) = @$args{qw(dbh out)};
# Do you stuffs here
$dbh->do(
q{UPDATE `systempreferences` SET `explanation` = 'Choose what should happen when an empty barcode field is submitted in circulation: Display a print quick slip window, Display a print slip window, Do nothing, or Clear the screen.' WHERE `variable` = 'CircAutoPrintQuickSlip'}
);
say $out "Updated system preference 'CircAutoPrintQuickSlip'";
},
};