From a03b45936f8cd327051f27022cb7a1b4eda37de1 Mon Sep 17 00:00:00 2001 From: Laura_Escamilla Date: Thu, 25 Sep 2025 18:50:48 +0000 Subject: [PATCH] Bug 40879: New OpacCiteModal system preference --- installer/data/mysql/atomicupdate/bug_40879.pl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/installer/data/mysql/atomicupdate/bug_40879.pl b/installer/data/mysql/atomicupdate/bug_40879.pl index 3932561247..28a9ecf585 100644 --- a/installer/data/mysql/atomicupdate/bug_40879.pl +++ b/installer/data/mysql/atomicupdate/bug_40879.pl @@ -3,18 +3,18 @@ use Koha::Installer::Output qw(say_warning say_success say_info); return { bug_number => "40879", - description => "Add system preference to enable/disable the “Cite” option in the OPAC", + description => "Add system preference to enable/disable the Cite option in the OPAC", up => sub { my ($args) = @_; my ( $dbh, $out ) = @$args{qw(dbh out)}; # Do you stuffs here $dbh->do( - q{INSERT IGNORE INTO systempreferences (variable, value, options, explanation, VALUES ('OpacCiteModal','1', NULL, 'Enable or disable the Cite option in the OPAC record view.', 'YesNo')} + q{INSERT IGNORE INTO systempreferences (variable, value, options, explanation, VALUES ('OpacCiteModal', '1', NULL, 'Enable or disable the Cite option in the OPAC record view.', 'YesNo')} ); # sysprefs - say $out "Added new system preference 'Added system preference OpacCiteModal'"; + say $out "Added new system preference 'OpacCiteModal'"; }, }; -- 2.39.5