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

@ -1,6 +1,7 @@
7.5.13
- fixed: Unable to template user profile viewing and editing screens.
- fixed: Product Variants not saving SKU
- fixed: Shop Payment Methods
- fixed: Asset Manager breaks when an asset is locked
- fixed: Asset Manager is slow to load

View file

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