Show
Ignore:
Timestamp:
05/29/07 20:48:48 (3 years ago)
Author:
eevee
Message:

Fixed: Vee::Dex was not being initialized early enough, as some of the startup search code wanted its variables. initialize() is now called in Vee::M::DBIC::new.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • veekun/trunk/lib/Vee/Form.pm

    r109 r186  
    146146         
    147147        if (!ref $attr->{options}[0]) { 
    148             $_ = [ $_ => $_ ] for @{ $attr->{options} }; 
     148            $attr->{options} = [ 
     149                map {[ $_ => $_ ]} @{ $attr->{options} } 
     150            ]; 
    149151        } 
    150152    }