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/Model/DBIC.pm

    r3 r186  
    22 
    33use strict; 
     4use warnings; 
    45use base 'Catalyst::Model::DBIC::Schema'; 
     6 
     7use Vee::Dex; 
     8 
     9sub new { 
     10    my $self = shift->NEXT::new(@_); 
     11 
     12    Vee::Dex::initialize( $self ); 
     13 
     14    return $self; 
     15} 
    516 
    617=head1 NAME