Skip to content

Commit

Permalink
Item10044: Fix array index notation in scalar context
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.foswiki.org/trunk/PhyloWidgetPlugin@11702 0b4bb1d4-4e5a-0410-9cc4-b2b747904278
  • Loading branch information
PaulHarvey authored and PaulHarvey committed May 17, 2011
1 parent 52273e9 commit 98d41ea
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 @@ -473,8 +473,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 98d41ea

Please sign in to comment.