';
print '';
print_liste_field_titre($langs->trans("Lastname"),"contact.php","lower(p.name)", $begin,"&type=$type");
print_liste_field_titre($langs->trans("Firstname"),"contact.php","lower(p.firstname)", $begin,"&type=$type");
@@ -150,8 +158,8 @@ if ($result)
$var=!$var;
print "
";
- print '| '.img_file();
- print ' '.$obj->name.' | ';
+ print ''.img_file();
+ print ' '.$obj->name.' | ';
print "$obj->firstname | ";
print ' ';
diff --git a/htdocs/langs/en_US/companies.lang b/htdocs/langs/en_US/companies.lang
index d56f8b7f117..9035d0d2d45 100644
--- a/htdocs/langs/en_US/companies.lang
+++ b/htdocs/langs/en_US/companies.lang
@@ -31,3 +31,4 @@ Supplier=Supplier
CompanyList=Companies' list
AddContact=Add new contact
PersonalInformations=Personal data
+CustomerCode=Customer code
diff --git a/htdocs/langs/fr_FR/companies.lang b/htdocs/langs/fr_FR/companies.lang
index b3dfb165f50..f8722bac69a 100644
--- a/htdocs/langs/fr_FR/companies.lang
+++ b/htdocs/langs/fr_FR/companies.lang
@@ -34,4 +34,5 @@ AddContact=Ajouter un contact
NewSocGroup=Nouveau groupement de sociétés
SocGroup=Groupement de sociétés
Created=Date saisie
-PersonalInformations=Informations personnelles
\ No newline at end of file
+PersonalInformations=Informations personnelles
+CustomerCode=Code client
\ No newline at end of file
diff --git a/htdocs/soc.php b/htdocs/soc.php
index 41e9558fb36..e0bc15b0ee0 100644
--- a/htdocs/soc.php
+++ b/htdocs/soc.php
@@ -181,7 +181,7 @@ if ($_GET["action"] == 'create')
print ' |
| '.$langs->trans('Phone').' | | ';
print ''.$langs->trans('Fax').' | |
';
- print '| '.$langs->trans('Code client').' | |
';
+ print '| '.$langs->trans('CustomerCode').' | |
';
print '| '.$langs->trans('Web').' | |
';
print '| '.$langs->trans('ProfIdSiren').' | | ';
@@ -271,7 +271,7 @@ elseif ($_GET["action"] == 'edit')
print '
| '.$langs->trans('Phone').' | | ';
print ''.$langs->trans('Fax').' | |
';
- print '| '.$langs->trans('Code client').' | ';
+ print ' |
| '.$langs->trans('CustomerCode').' | ';
if ($soc->codeclient_modifiable == 1)
{
@@ -416,7 +416,7 @@ else
print ' | '.$langs->trans('Fax').' | '.dolibarr_print_phone($soc->fax).' |
';
print '| ';
- print $langs->trans('Code client').' | ';
+ print $langs->trans('CustomerCode').' | ';
print $soc->code_client;
if ($soc->check_codeclient() <> 0)
{
|