Changeset 279

Show
Ignore:
Timestamp:
01/21/07 18:58:42 (2 years ago)
Author:
ogawa
Message:

Just a fix for indenting issue.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • ModifiedDate/trunk/ModifiedDate.pl

    r278 r279  
    4747 
    4848    my $blog = $_[0]->stash('blog'); 
    49     my @paths = ($file, map File::Spec->catfile($_, $file), 
    50                  $blog->site_path, $blog->archive_path); 
     49    my @paths = ($file, 
     50                 map File::Spec->catfile($_, $file), $blog->site_path, $blog->archive_path); 
    5151    my $path; 
    5252    for my $p (@paths) { 
    5353        $path = $p, last if -e $p && -r _; 
    5454    } 
    55     return $_[0]->error(MT->translate("Can't find file '[_1]'", $file )) unless $path; 
     55    return $_[0]->error(MT->translate("Can't find file '[_1]'", $file)) unless $path; 
    5656    my ($mtime) = (stat($path))[9]; 
    5757    $args->{ts} = MT::Util::epoch2ts($blog, $mtime);