Changeset 529

Show
Ignore:
Timestamp:
04/18/12 08:52:39 (14 months ago)
Author:
kake
Message:

Fixed deprecated use of foreach ... qw (fixes #53 and #54).

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • wiki-toolkit/trunk/lib/Wiki/Toolkit/Feed/Atom.pm

    r497 r529  
    212212   
    213213    # Escape any &'s in the urls 
    214     foreach my $key qw(site_url atom_link) { 
     214    foreach my $key (qw(site_url atom_link)) { 
    215215        my @ands = ($self->{$key} =~ /(\&.{1,6})/g); 
    216216        foreach my $and (@ands) {