From f4f577b319bfc8014a9788a0a0fc508edde6783a Mon Sep 17 00:00:00 2001 From: Regis Houssin Date: Thu, 7 Jun 2007 16:13:40 +0000 Subject: [PATCH] Fix: pas UK mais GB --- htdocs/societe.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/societe.class.php b/htdocs/societe.class.php index a5961712e1a..07e179735ef 100644 --- a/htdocs/societe.class.php +++ b/htdocs/societe.class.php @@ -1797,7 +1797,7 @@ class Societe function isInEEC() { // \todo liste code pays ŕ compléter - $country_code_in_EEC=array('BE','FR','LU','UK'); + $country_code_in_EEC=array('BE','FR','LU','GB'); //print "dd".$this->pays_code; return in_array($this->pays_code,$country_code_in_EEC); }