Changeset 326


Ignore:
Timestamp:
08/11/09 00:28:31 (15 years ago)
Author:
nanardon
Message:
  • fix argument hadling in search functions
File:
1 edited

Legend:

Unmodified
Added
Removed
  • LATMOS-Accounts/lib/LATMOS/Accounts/Bases.pm

    r320 r326  
    399399 
    400400sub search_objects { 
    401     my ($self, $otype, %filter) = @_; 
    402     my $pclass = $self->_load_obj_class($otype) or return; 
    403     $pclass->search($self, %filter); 
     401    my ($self, $otype, @filter) = @_; 
     402    my $pclass = $self->_load_obj_class($otype) or return; 
     403    $pclass->search($self, @filter); 
    404404} 
    405405 
Note: See TracChangeset for help on using the changeset viewer.