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