From 6c28b9f6445e9ca8f3f84aaf8f3e61be47c15515 Mon Sep 17 00:00:00 2001 From: ivan Date: Wed, 10 Jan 2007 07:48:19 +0000 Subject: [PATCH] fix ship_county display bug --- httemplate/view/cust_main/contacts.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/httemplate/view/cust_main/contacts.html b/httemplate/view/cust_main/contacts.html index 51b72da9a..a764b4541 100644 --- a/httemplate/view/cust_main/contacts.html +++ b/httemplate/view/cust_main/contacts.html @@ -36,9 +36,9 @@ City <% $cust_main->get("${pre}city") %> -% if ( $cust_main->county ) { +% if ( $cust_main->get("${pre}county" ) { County - <% $cust_main->county %> + <% $cust_main->get->("${pre}county") %> % } State <% state_label( $cust_main->get("${pre}state"), $cust_main->get("${pre}country") ) %> -- 2.11.0