Skip to content

Commit

Permalink
Item10044: incorrect @array access
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.foswiki.org/trunk/PhyloWidgetPlugin@12039 0b4bb1d4-4e5a-0410-9cc4-b2b747904278
  • Loading branch information
PaulHarvey authored and PaulHarvey committed Jun 23, 2011
1 parent 3e6e8ff commit b2b3d1d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Foswiki/Plugins/PhyloWidgetPlugin.pm
Original file line number Diff line number Diff line change
Expand Up @@ -362,8 +362,8 @@ sub processClade {

#save the file as attachment
my @stats = stat $filename;
my $fileSize = @stats[7];
my $fileDate = @stats[9];
my $fileSize = $stats[7];
my $fileDate = $stats[9];
if ($debug) {
$dinfo = $dinfo . 'got info of file\n';
}
Expand Down

0 comments on commit b2b3d1d

Please sign in to comment.