From b2295c15ddcb1d0ec65a918c49171e148784bce7 Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Thu, 9 Dec 2021 16:07:18 +0100 Subject: [PATCH] Bug 29673: Allow English sql localization script Test plan: You might want to add a simple SQL statement to your English custom.sql in order to verify the execution. Run a Koha install (in English). Check if the data shows your custom sql action. Signed-off-by: Marcel de Rooy Signed-off-by: Kyle M Hall --- C4/Installer.pm | 2 +- installer/data/mysql/localization/en/custom.sql | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 installer/data/mysql/localization/en/custom.sql diff --git a/C4/Installer.pm b/C4/Installer.pm index 723d47227b..ffab0ed76a 100644 --- a/C4/Installer.pm +++ b/C4/Installer.pm @@ -370,7 +370,7 @@ sub load_sql_in_order { ; my $localization_file = C4::Context->config('intranetdir') . "/installer/data/$self->{dbms}/localization/$langchoice/custom.sql"; - if ( $langchoice ne 'en' and -f $localization_file ) { + if ( -f $localization_file ) { push @fnames, $localization_file; } foreach my $file (@fnames) { diff --git a/installer/data/mysql/localization/en/custom.sql b/installer/data/mysql/localization/en/custom.sql new file mode 100644 index 0000000000..c632ef064e --- /dev/null +++ b/installer/data/mysql/localization/en/custom.sql @@ -0,0 +1,2 @@ +-- custom.sql, English edition +-- You may want to add SQL statements here to customize your Koha install -- 2.30.2