Changeset 1268 for branches


Ignore:
Timestamp:
12/03/14 16:47:27 (9 years ago)
Author:
nanardon
Message:

4.0.3

Location:
branches
Files:
2 added
3 edited

Legend:

Unmodified
Added
Removed
  • branches/4.0

  • branches/4.0/LATMOS-Accounts/lib/LATMOS/Accounts.pm

    r1267 r1268  
    1111use LATMOS::Accounts::Acls; 
    1212 
    13 our $VERSION = '4.0.2'; 
     13our $VERSION = '4.0.3'; 
    1414 
    1515=head1 NAME 
  • branches/4.0/LATMOS-Accounts/lib/LATMOS/Accounts/Task/Buildlistes.pm

    r1215 r1268  
    105105        # finding /^excludefilter/ as search results 
    106106        # deleting from list results 
    107         foreach my $param ($listcfg->Parameters($list)) { 
     107        my %done; 
     108        foreach my $param ($listcfg->Parameters($list), 
     109                           $listcfg->Parameters('_default_')) { 
     110            $done{$param} and next; 
     111            $done{$param} = 1; 
    108112            $param =~ /^excludefilter/ or next; 
     113            $listcfg->val($list, $param) or next; 
    109114 
    110115            foreach my $id (sort $labase->search_objects( 
Note: See TracChangeset for help on using the changeset viewer.