From b30eb2cc17c38b3341ec3866b15f3ddfd8f917a0 Mon Sep 17 00:00:00 2001 From: Matthew Wilson Date: Sun, 7 May 2006 14:12:22 +0000 Subject: [PATCH] fix --- lib/WebGUI/Commerce/Payment/ITransact.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/WebGUI/Commerce/Payment/ITransact.pm b/lib/WebGUI/Commerce/Payment/ITransact.pm index fd1e116fa..6ec672894 100644 --- a/lib/WebGUI/Commerce/Payment/ITransact.pm +++ b/lib/WebGUI/Commerce/Payment/ITransact.pm @@ -409,7 +409,7 @@ sub checkoutForm { $f->selectBox( -name=>"country", -label=>$i18n->get("country"), - -value=>($self->session->form->process("country") || $u->profileField("homeCountry")) || 'United States'), + -value=>($self->session->form->process("country") || $u->profileField("homeCountry") || 'United States'), -options=>\%countries ); #For some odd reason, defaultValue needs to come before value here or value displays the text "-defaultValue". Bug is reported.