diff options
author | mark <mark> | 2010-12-21 09:13:04 +0000 |
---|---|---|
committer | mark <mark> | 2010-12-21 09:13:04 +0000 |
commit | 8adf98d5f6eb3636f2097d1046917d12acf2e56a (patch) | |
tree | e1e77e2fedbf93aff4485573fd36038571397568 /httemplate | |
parent | 8ff8367c3806c5eb56b604bf55f67db177cf0bda (diff) |
changes to support eWay third-party payment, #10208
Diffstat (limited to 'httemplate')
-rw-r--r-- | httemplate/edit/payment_gateway.html | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/httemplate/edit/payment_gateway.html b/httemplate/edit/payment_gateway.html index a9909c365..62e35fcdb 100644 --- a/httemplate/edit/payment_gateway.html +++ b/httemplate/edit/payment_gateway.html @@ -48,6 +48,7 @@ my %modules = ( 'CyberSource' => 'Business::OnlinePayment', 'eSec' => 'Business::OnlinePayment', 'eSelectPlus' => 'Business::OnlinePayment', + 'eWayShared' => 'Business::OnlineThirdPartyPayment', 'ElavonVirtualMerchant' => 'Business::OnlinePayment', 'Exact' => 'Business::OnlinePayment', 'iAuthorizer' => 'Business::OnlinePayment', @@ -92,7 +93,7 @@ my %modules = ( my @actions = ( 'Normal Authorization', 'Authorization Only', - 'Authorization Only, Post Authorization', + 'Authorization Only,Post Authorization', ); my $fields = [ @@ -117,7 +118,11 @@ my $fields = [ type => 'select', options => \@actions, }, - 'gateway_callback_url', + { + field => 'gateway_callback_url', + type => 'text', + size => 40, + }, { field => 'gateway_options', type => 'textarea', |