From 6115df4ebf3346026433d428ae853bc3e6425750 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 Content-Type: text/plain; charset=utf-8 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 --- 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 ff9c2b170f..655ecf64e1 100644 --- a/C4/Installer.pm +++ b/C4/Installer.pm @@ -369,7 +369,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.20.1