View | Details | Raw Unified | Return to bug 29673
Collapse All | Expand All

(-)a/C4/Installer.pm (-1 / +1 lines)
Lines 369-375 sub load_sql_in_order { Link Here
369
                  ;
369
                  ;
370
    my $localization_file = C4::Context->config('intranetdir') .
370
    my $localization_file = C4::Context->config('intranetdir') .
371
                            "/installer/data/$self->{dbms}/localization/$langchoice/custom.sql";
371
                            "/installer/data/$self->{dbms}/localization/$langchoice/custom.sql";
372
    if ( $langchoice ne 'en' and -f $localization_file ) {
372
    if ( -f $localization_file ) {
373
        push @fnames, $localization_file;
373
        push @fnames, $localization_file;
374
    }
374
    }
375
    foreach my $file (@fnames) {
375
    foreach my $file (@fnames) {
(-)a/installer/data/mysql/localization/en/custom.sql (-1 / +2 lines)
Line 0 Link Here
0
- 
1
-- custom.sql, English edition
2
-- You may want to add SQL statements here to customize your Koha install

Return to bug 29673