Ignore:
Timestamp:
05/13/09 22:43:57 (15 years ago)
Author:
nanardon
Message:
  • rename list_canonicals_fields to list_canonical_fields
File:
1 edited

Legend:

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

    r83 r103  
    197197            my %fields = (); 
    198198            my %delayed = map { $_ => 1 } $to->delayed_fields($otype); 
    199             foreach ($from->list_canonicals_fields($otype, 'r')) { 
     199            foreach ($from->list_canonical_fields($otype, 'r')) { 
    200200                $delayed{$_} and next; 
    201201                $fields{$_} ||= 0; # avoid  
    202202                $fields{$_}++; 
    203203            } 
    204             foreach ($to->list_canonicals_fields($otype, 'w')) { 
     204            foreach ($to->list_canonical_fields($otype, 'w')) { 
    205205                $delayed{$_} and next; 
    206206                $fields{$_} ||= 0; # avoid  
     
    216216            my %fields = (); 
    217217            my %delayed = map { $_ => 1 } $to->delayed_fields($otype); 
    218             foreach ($from->list_canonicals_fields($otype, 'r')) { 
     218            foreach ($from->list_canonical_fields($otype, 'r')) { 
    219219                $delayed{$_} or next; 
    220220                $fields{$_} ||= 0; # avoid  
    221221                $fields{$_}++; 
    222222            } 
    223             foreach ($to->list_canonicals_fields($otype, 'w')) { 
     223            foreach ($to->list_canonical_fields($otype, 'w')) { 
    224224                $delayed{$_} or next; 
    225225                $fields{$_} ||= 0; # avoid  
Note: See TracChangeset for help on using the changeset viewer.