Fix bad driver lookup for label. Label is a method, not property that is looked up using ->get.

This commit is contained in:
Colin Kuskie 2008-06-13 16:46:15 +00:00
parent 570ecd0c50
commit ccc4eb37c4
2 changed files with 2 additions and 1 deletions

View file

@ -333,7 +333,7 @@ sub www_manage {
.WebGUI::Form::formFooter($session)
# Append payment gateway label
.' '. $paymentGateway->get("label")
.' '. $paymentGateway->label()
.'</div>';
}