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

(-)a/C4/Installer.pm (-1 / +1 lines)
Lines 370-376 sub load_sql_in_order { Link Here
370
                  ;
370
                  ;
371
    my $localization_file = C4::Context->config('intranetdir') .
371
    my $localization_file = C4::Context->config('intranetdir') .
372
                            "/installer/data/$self->{dbms}/localization/$langchoice/custom.sql";
372
                            "/installer/data/$self->{dbms}/localization/$langchoice/custom.sql";
373
    if ( $langchoice ne 'en' and -f $localization_file ) {
373
    if ( -f $localization_file ) {
374
        push @fnames, $localization_file;
374
        push @fnames, $localization_file;
375
    }
375
    }
376
    foreach my $file (@fnames) {
376
    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