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

(-)a/C4/Koha.pm (-1 / +1 lines)
Lines 674-679 sub getallthemes { Link Here
674
    opendir D, "$htdocs";
674
    opendir D, "$htdocs";
675
    my @dirlist = readdir D;
675
    my @dirlist = readdir D;
676
    foreach my $directory (@dirlist) {
676
    foreach my $directory (@dirlist) {
677
        next if $directory eq 'lib';
677
        -d "$htdocs/$directory/en" and push @themes, $directory;
678
        -d "$htdocs/$directory/en" and push @themes, $directory;
678
    }
679
    }
679
    return @themes;
680
    return @themes;
680
- 

Return to bug 8623