Tue Jan 06 14:59:04 2009bradoaks [...] gmail.com - Ticket created
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.
Tue Jan 06 15:01:46 2009bradoaks [...] gmail.com - Correspondence added
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
Tue Jan 06 15:01:48 2009bradoaks [...] gmail.com - Status changed from 'new' to 'open'
Fri Jan 16 14:29:04 2009bradoaks [...] gmail.com - Status changed from 'open' to 'new'