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) { |