Skip Menu |

This queue is for tickets about the Business-OnlinePayment-Vanco CPAN distribution.

Report information
The Basics
Id: 42189
Status: new
Priority: 0/
Queue: Business-OnlinePayment-Vanco

People
Owner: Nobody in particular
Requestors: bradoaks [...] gmail.com
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in:
  • 0.01
  • 0.02
Fixed in: (no value)



Subject: ship_name and other ship_* keys are not passing through.
The keys with a 'ship_' prefix in the content hash are not being passed through.
On Tue Jan 06 14:59:04 2009, bradoaks wrote: Show quoted text
> The keys with a 'ship_' prefix in the content hash are not being passed > through.
The attached patch corrected this problem on my local machine. Let me know if I am misunderstanding something about how the ship_ elements are supposed to work. Thank you, --bradoaks
--- Vanco.pm.orig 2008-07-07 22:00:39.000000000 -0400 +++ Vanco.pm 2009-01-06 14:58:31.000000000 -0500 @@ -155,7 +155,7 @@ # SHIPPING INFORMATION foreach (qw(name address city state zip)) { - $content{"ship_$_"} = $content{$_} unless $content{"ship$_"}; + $content{"ship_$_"} = $content{$_} unless $content{"ship_$_"}; } # stuff it back into %content