@@ -, +, @@ --- C4/Koha.pm | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) --- a/C4/Koha.pm +++ a/C4/Koha.pm @@ -674,6 +674,7 @@ sub getallthemes { opendir D, "$htdocs"; my @dirlist = readdir D; foreach my $directory (@dirlist) { + next if $directory eq 'lib'; -d "$htdocs/$directory/en" and push @themes, $directory; } return @themes; --