From 54683f3f18f7ced99c678df6e14344ee02939d36 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Mon, 9 Jun 2008 19:32:39 +0000 Subject: [PATCH] Fix: Country not shown --- htdocs/soc.php | 1 + 1 file changed, 1 insertion(+) diff --git a/htdocs/soc.php b/htdocs/soc.php index 39be710435f..b9955cd5713 100644 --- a/htdocs/soc.php +++ b/htdocs/soc.php @@ -995,6 +995,7 @@ else // Country print ''.$langs->trans("Country").''; if ($soc->isInEEC()) print $form->textwithhelp($soc->pays,$langs->trans("CountryIsInEEC"),1,0); + else print $soc->pays; print ''; print ''.$langs->trans('State').''.$soc->departement.'';