@@ -, +, @@ --- 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 --- a/C4/Installer.pm +++ a/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) { --- a/installer/data/mysql/localization/en/custom.sql +++ a/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 --