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

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

Return to bug 15395