L.select_tag muss auch ohne .as_list vmethod mit 1-Element Listen kalr kommen
authorSven Schöling <s.schoeling@linet-services.de>
Fri, 11 Oct 2013 12:09:35 +0000 (14:09 +0200)
committerSven Schöling <s.schoeling@linet-services.de>
Fri, 11 Oct 2013 12:09:35 +0000 (14:09 +0200)
behebt #2376

SL/Presenter/Tag.pm

index 43591e5..924ab8b 100644 (file)
@@ -146,6 +146,10 @@ sub select_tag {
   my $list_to_code = sub {
     my ($sub_collection) = @_;
 
+    if ('ARRAY' ne ref $sub_collection) {
+      $sub_collection = [ $sub_collection ];
+    }
+
     my @options;
     foreach my $entry ( @{ $sub_collection } ) {
       my $value;