diff options
Diffstat (limited to 'InternetSecure.pm')
-rwxr-xr-x | InternetSecure.pm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/InternetSecure.pm b/InternetSecure.pm index b6632ed..cde38d3 100755 --- a/InternetSecure.pm +++ b/InternetSecure.pm @@ -151,7 +151,7 @@ sub to_xml { croak "Unsupported transaction type: $content{type}" if $content{type} && ! grep lc($content{type}) eq lc($_), - values %{+CARD_TYPES}; + values %{+CARD_TYPES}, 'CC'; croak 'Unsupported action' unless $content{action} =~ /^Normal Authori[zs]ation$/i; @@ -434,6 +434,8 @@ Transaction type, being one of the following: =item - JCB +=item - CC + =back (This is actually ignored for the moment, and can be left blank or undefined.) |