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

(-)a/misc/translator/LangInstaller.pm (-2 / +1 lines)
Lines 683-689 sub install_messages { Link Here
683
683
684
    my $opachtdocs = $self->{context}->config('opachtdocs');
684
    my $opachtdocs = $self->{context}->config('opachtdocs');
685
    opendir(my $dh, $opachtdocs);
685
    opendir(my $dh, $opachtdocs);
686
    for my $theme ( grep { not /^\.|lib/ } readdir($dh) ) {
686
    for my $theme ( grep { not /^\.|lib|xslt/ } readdir($dh) ) {
687
        mkdir "$opachtdocs/$theme/$self->{lang}/js";
687
        mkdir "$opachtdocs/$theme/$self->{lang}/js";
688
        open my $fh, '>', "$opachtdocs/$theme/$self->{lang}/js/locale_data.js";
688
        open my $fh, '>', "$opachtdocs/$theme/$self->{lang}/js/locale_data.js";
689
        print $fh $js_locale_data;
689
        print $fh $js_locale_data;
690
- 

Return to bug 15395