diff --git a/htdocs/admin/translation.php b/htdocs/admin/translation.php
index 7de9ed3d92c..1999aab006c 100644
--- a/htdocs/admin/translation.php
+++ b/htdocs/admin/translation.php
@@ -428,14 +428,14 @@ if ($mode == 'searchkey')
$filearray=dol_dir_list($dir_lang_osencoded,'files',0,'','',$sortfield,(strtolower($sortorder)=='asc'?SORT_ASC:SORT_DESC),1);
foreach($filearray as $file)
{
- $tmpfile=preg_replace('/.lang/i', '', basename($file['name']));
- $moduledirname =(basename(dirname(dirname($dir_lang))));
+ $tmpfile=preg_replace('/.lang/i', '', basename($file['name']));
+ $moduledirname =(basename(dirname(dirname($dir_lang))));
- $langkey=$tmpfile;
- if ($i > 0) $langkey.='@'.$moduledirname;
- //var_dump($i.' - '.$keydir.' - '.$dir_lang_osencoded.' -> '.$moduledirname . ' / ' . $tmpfile.' -> '.$langkey);
+ $langkey=$tmpfile;
+ if ($i > 0) $langkey.='@'.$moduledirname;
+ //var_dump($i.' - '.$keydir.' - '.$dir_lang_osencoded.' -> '.$moduledirname . ' / ' . $tmpfile.' -> '.$langkey);
- $result = $newlang->load($langkey, 0, 0, '', 0); // Load translation files + database overwrite
+ $result = $newlang->load($langkey, 0, 0, '', 0); // Load translation files + database overwrite
$result = $newlangfileonly->load($langkey, 0, 0, '', 1); // Load translation files only
if ($result < 0) print 'Failed to load language file '.$tmpfile.'
'."\n";
else $nbtotaloffiles++;
diff --git a/htdocs/core/modules/contract/doc/doc_generic_contract_odt.modules.php b/htdocs/core/modules/contract/doc/doc_generic_contract_odt.modules.php
index eeb267512d4..d99d43396bc 100644
--- a/htdocs/core/modules/contract/doc/doc_generic_contract_odt.modules.php
+++ b/htdocs/core/modules/contract/doc/doc_generic_contract_odt.modules.php
@@ -1,6 +1,7 @@
* Copyright (C) 2012 Juanjo Menent
+ * Copyright (C) 2018 Ferran Marcet
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -280,14 +281,14 @@ class doc_generic_contract_odt extends ModelePDFContract
// On peut utiliser le nom de la societe du contact
if (! empty($conf->global->MAIN_USE_COMPANY_NAME_OF_CONTACT)) $socobject = $object->contact;
else {
- $socobject = $object->client;
+ $socobject = $object->thirdparty;
// if we have a CUSTOMER contact and we dont use it as recipient we store the contact object for later use
$contactobject = $object->contact;
}
}
else
{
- $socobject=$object->client;
+ $socobject=$object->thirdparty;
}
// Make substitution
$substitutionarray=array(
diff --git a/htdocs/core/modules/product/doc/doc_generic_product_odt.modules.php b/htdocs/core/modules/product/doc/doc_generic_product_odt.modules.php
index c7eed903e8e..8af397d15c1 100644
--- a/htdocs/core/modules/product/doc/doc_generic_product_odt.modules.php
+++ b/htdocs/core/modules/product/doc/doc_generic_product_odt.modules.php
@@ -307,14 +307,14 @@ class doc_generic_product_odt extends ModelePDFProduct
// On peut utiliser le nom de la societe du contact
if (! empty($conf->global->MAIN_USE_COMPANY_NAME_OF_CONTACT)) $socobject = $object->contact;
else {
- $socobject = $object->client;
+ $socobject = $object->thirdparty;
// if we have a CUSTOMER contact and we dont use it as recipient we store the contact object for later use
$contactobject = $object->contact;
}
}
else
{
- $socobject=$object->client;
+ $socobject=$object->thirdparty;
}
// Make substitution
$substitutionarray=array(
diff --git a/htdocs/core/modules/user/doc/doc_generic_user_odt.modules.php b/htdocs/core/modules/user/doc/doc_generic_user_odt.modules.php
index 36d71568566..a2c15780e35 100644
--- a/htdocs/core/modules/user/doc/doc_generic_user_odt.modules.php
+++ b/htdocs/core/modules/user/doc/doc_generic_user_odt.modules.php
@@ -304,14 +304,14 @@ class doc_generic_user_odt extends ModelePDFUser
// On peut utiliser le nom de la societe du contact
if (! empty($conf->global->MAIN_USE_COMPANY_NAME_OF_CONTACT)) $socobject = $object->contact;
else {
- $socobject = $object->client;
+ $socobject = $object->thirdparty;
// if we have a CUSTOMER contact and we dont use it as recipient we store the contact object for later use
$contactobject = $object->contact;
}
}
else
{
- $socobject=$object->client;
+ $socobject=$object->thirdparty;
}
// Open and load template
diff --git a/htdocs/core/modules/usergroup/doc/doc_generic_usergroup_odt.modules.php b/htdocs/core/modules/usergroup/doc/doc_generic_usergroup_odt.modules.php
index 453bde8515f..d237e1bce38 100644
--- a/htdocs/core/modules/usergroup/doc/doc_generic_usergroup_odt.modules.php
+++ b/htdocs/core/modules/usergroup/doc/doc_generic_usergroup_odt.modules.php
@@ -306,14 +306,14 @@ class doc_generic_usergroup_odt extends ModelePDFUserGroup
// On peut utiliser le nom de la societe du contact
if (! empty($conf->global->MAIN_USE_COMPANY_NAME_OF_CONTACT)) $socobject = $object->contact;
else {
- $socobject = $object->client;
+ $socobject = $object->thirdparty;
// if we have a CUSTOMER contact and we dont use it as recipient we store the contact object for later use
$contactobject = $object->contact;
}
}
else
{
- $socobject=$object->client;
+ $socobject=$object->thirdparty;
}
// Make substitution
$substitutionarray=array(
diff --git a/htdocs/fichinter/card.php b/htdocs/fichinter/card.php
index cb505831e7d..35f985f7799 100644
--- a/htdocs/fichinter/card.php
+++ b/htdocs/fichinter/card.php
@@ -4,7 +4,7 @@
* Copyright (C) 2005-2015 Regis Houssin
* Copyright (C) 2011-2017 Juanjo Menent
* Copyright (C) 2013 Florian Henry
- * Copyright (C) 2014-2015 Ferran Marcet
+ * Copyright (C) 2014-2018 Ferran Marcet
* Copyright (C) 2014-2015 Charlie Benke
* Copyright (C) 2015-2016 Abbes Bahfir
*
@@ -308,7 +308,7 @@ if (empty($reshook))
$outputlangs = $langs;
$newlang='';
if (empty($newlang) && GETPOST('lang_id','aZ09')) $newlang=GETPOST('lang_id','aZ09');
- if (empty($newlang)) $newlang=$srcobject->client->default_lang;
+ if (empty($newlang)) $newlang=$srcobject->thirdparty->default_lang;
if (! empty($newlang)) {
$outputlangs = new Translate("",$conf);
$outputlangs->setDefaultLang($newlang);
@@ -887,7 +887,7 @@ if ($action == 'create')
$projectid = (!empty($objectsrc->fk_project)?$objectsrc->fk_project:'');
- $soc = $objectsrc->client;
+ $soc = $objectsrc->thirdparty;
$note_private = (! empty($objectsrc->note) ? $objectsrc->note : (! empty($objectsrc->note_private) ? $objectsrc->note_private : GETPOST('note_private','none')));
$note_public = (! empty($objectsrc->note_public) ? $objectsrc->note_public : GETPOST('note_public','none'));