diff options
author | ivan <ivan> | 2008-05-15 22:48:54 +0000 |
---|---|---|
committer | ivan <ivan> | 2008-05-15 22:48:54 +0000 |
commit | 5fc309a5e209071f863b3c6c12e7088c2c9e4eff (patch) | |
tree | 20fef74744e4824f5921bac25876654ee316319c | |
parent | 2d05088fea6f79f77e6908ed96ec2c318628d4f8 (diff) |
fix minor problem with ship_zip not showing up in small_custview
-rw-r--r-- | FS/FS/CGI.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/CGI.pm b/FS/FS/CGI.pm index 38a869ccd..06f740cf5 100644 --- a/FS/FS/CGI.pm +++ b/FS/FS/CGI.pm @@ -369,7 +369,7 @@ sub small_custview { if $cust_main->get("${pre}address2"); $html .= $cust_main->get("${pre}city"). ', '. $cust_main->get("${pre}state"). ' '. - $cust_main->get("${pre}ship_zip"). '<BR>'; + $cust_main->get("${pre}zip"). '<BR>'; $html .= $cust_main->get("${pre}country"). '<BR>' if $cust_main->get("${pre}country") && $cust_main->get("${pre}country") ne $countrydefault; |