Part-Manager: leere Strings im Typenfilter ignorieren
authorMoritz Bunkus <m.bunkus@linet-services.de>
Fri, 12 Jul 2013 08:08:35 +0000 (10:08 +0200)
committerMoritz Bunkus <m.bunkus@linet-services.de>
Fri, 12 Jul 2013 11:36:49 +0000 (13:36 +0200)
SL/DB/Manager/Part.pm

index fccbbd9..d286924 100644 (file)
@@ -38,7 +38,7 @@ sub type_filter {
     $type = [ grep { $type->{$_} } keys %$type ];
   }
 
-  my @types = listify($type);
+  my @types = grep { $_ } listify($type);
   my @filter;
 
   for my $type (@types) {