fix syntax error in FlatRate, calculate

This commit is contained in:
Colin Kuskie 2008-03-17 17:46:28 +00:00
parent c61890392c
commit 79dc7757a6

View file

@ -55,7 +55,7 @@ sub calculate {
}
}
if ($anyShippable) {
$cost += $flatFee;
$cost += $self->get('flatFee');
}
return $cost;
}