diff options
| author | ivan <ivan> | 2008-05-15 22:48:53 +0000 | 
|---|---|---|
| committer | ivan <ivan> | 2008-05-15 22:48:53 +0000 | 
| commit | 38a7453130448e067e77fbb6966630bca4cc765b (patch) | |
| tree | b1680174a7c7a7f4b24b1df573e8583d536e944e | |
| parent | 2ae0d46c96d1272f8c33c60bc80ac55a7f2ef0e7 (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;  | 
