From f793ed83f6c9076bc6d4cbef39a66ab5b7e3cc8b Mon Sep 17 00:00:00 2001 From: fhenry Date: Mon, 4 Mar 2013 15:36:40 +0100 Subject: [PATCH] Fix [ bug #747 ] --- htdocs/comm/propal.php | 2 +- htdocs/commande/fiche.php | 2 +- htdocs/compta/facture.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/htdocs/comm/propal.php b/htdocs/comm/propal.php index 7511c6f2ea4..9b331027159 100644 --- a/htdocs/comm/propal.php +++ b/htdocs/comm/propal.php @@ -745,7 +745,7 @@ else if ($action == "addline" && $user->rights->propal->creer) if (! empty($prod->customcode) && ! empty($prod->country_code)) $tmptxt.=' - '; if (! empty($prod->country_code)) $tmptxt.=$langs->transnoentitiesnoconv("CountryOrigin").': '.getCountry($prod->country_code,0,$db,$langs,0); $tmptxt.=')'; - $desc.= dol_concatdesc($desc, $tmptxt); + $desc= dol_concatdesc($desc, $tmptxt); } } diff --git a/htdocs/commande/fiche.php b/htdocs/commande/fiche.php index 9b6465c64a7..77b8f5956c5 100644 --- a/htdocs/commande/fiche.php +++ b/htdocs/commande/fiche.php @@ -660,7 +660,7 @@ else if ($action == 'addline' && $user->rights->commande->creer) if (! empty($prod->customcode) && ! empty($prod->country_code)) $tmptxt.=' - '; if (! empty($prod->country_code)) $tmptxt.=$langs->transnoentitiesnoconv("CountryOrigin").': '.getCountry($prod->country_code,0,$db,$langs,0); $tmptxt.=')'; - $desc.= dol_concatdesc($desc, $tmptxt); + $desc= dol_concatdesc($desc, $tmptxt); } } diff --git a/htdocs/compta/facture.php b/htdocs/compta/facture.php index 5bc85030f99..8c357894b4a 100644 --- a/htdocs/compta/facture.php +++ b/htdocs/compta/facture.php @@ -1100,7 +1100,7 @@ else if (($action == 'addline' || $action == 'addline_predef') && $user->rights- if (! empty($prod->customcode) && ! empty($prod->country_code)) $tmptxt.=' - '; if (! empty($prod->country_code)) $tmptxt.=$langs->transnoentitiesnoconv("CountryOrigin").': '.getCountry($prod->country_code,0,$db,$langs,0); $tmptxt.=')'; - $desc.= dol_concatdesc($desc, $tmptxt); + $desc= dol_concatdesc($desc, $tmptxt); } }