0.05
[Business-OnlinePayment-InternetSecure.git] / InternetSecure.pm
index b6632ed..98be911 100755 (executable)
@@ -12,7 +12,7 @@ use XML::Simple qw(xml_in xml_out);
 use base qw(Business::OnlinePayment Exporter);
 
 
-our $VERSION = '0.03';
+our $VERSION = '0.05';
 
 
 use constant SUCCESS_CODES => qw(2000 90000 900P1);
@@ -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.)
@@ -648,7 +650,11 @@ L<Business::OnlinePayment>
 
 =head1 AUTHOR
 
-Frédéric Brière, E<lt>fbriere@fbriere.netE<gt>
+Original author: Frédéric Brière, E<lt>fbriere@fbriere.netE<gt>.  Please don't
+bother Frédéric with emails about this module.
+
+Currentuly (minimally) maintained by Ivan Kohler.  See
+http://rt.cpan.org/Public/Bug/Report.html?Queue=Business-OnlinePayment-InternetSecure to submit patches and bug reports.
 
 =head1 COPYRIGHT AND LICENSE
 
@@ -658,5 +664,4 @@ This library is free software; you can redistribute it and/or modify
 it under the same terms as Perl itself, either Perl version 5.8.4 or,
 at your option, any later version of Perl 5 you may have available.
 
-
 =cut