Tomas Cohen Arazi
7a413f8015
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
15 lines
572 B
Perl
Executable file
15 lines
572 B
Perl
Executable file
use Modern::Perl;
|
|
|
|
return {
|
|
bug_number => "26368",
|
|
description => "Add OCLC Encoding Levels system preference",
|
|
up => sub {
|
|
my ($args) = @_;
|
|
my ($dbh, $out) = @$args{qw(dbh out)};
|
|
$dbh->do(q{
|
|
INSERT IGNORE INTO systempreferences (variable, value, options, explanation, type)
|
|
VALUES ('UseOCLCEncodingLevels','0',NULL,'If enabled, include OCLC encoding levels in leader value builder dropdown for position 17.','YesNo')
|
|
});
|
|
say $out "Added new system preference 'UseOCLCEncodingLevels'";
|
|
},
|
|
};
|