number tests correctly
[Business-OnlinePayment-LinkPoint.git] / LinkPoint.pm
index 7b307ff..26c16bb 100644 (file)
@@ -1,6 +1,6 @@
 package Business::OnlinePayment::LinkPoint;
 
-# $Id: LinkPoint.pm,v 1.3 2002-02-26 08:53:52 ivan Exp $
+# $Id: LinkPoint.pm,v 1.6 2002-08-14 01:32:54 ivan Exp $
 
 use strict;
 use vars qw($VERSION @ISA @EXPORT @EXPORT_OK);
@@ -46,7 +46,8 @@ sub map_fields {
 sub build_subs {
     my $self = shift;
     foreach(@_) {
-        no warnings;
+        #no warnings; #not 5.005
+        local($^W)=0;
         eval "sub $_ { my \$self = shift; if(\@_) { \$self->{$_} = shift; } return \$self->{$_}; }";
     }
 }
@@ -149,7 +150,11 @@ sub submit {
 
     #print "$_ => $post_data{$_}\n" foreach keys %post_data;
 
-    my %response = $lperl->$action(\%post_data);
+    my %response;
+    {
+      local($^W)=0;
+      %response = $lperl->$action(\%post_data);
+    }
 
     if ( $response{'statusCode'} == 0 ) {
       $self->is_success(0);
@@ -229,7 +234,7 @@ Based on Busienss::OnlinePayment::AuthorizeNet written by Jason Kohles.
 
 =head1 SEE ALSO
 
-perl(1). L<Business::OnlinePayment>.
+perl(1), L<Business::OnlinePayment>.
 
 =cut