diff --git a/htdocs/core/class/utils.class.php b/htdocs/core/class/utils.class.php
index f8096ed84e9..16e000e7f59 100644
--- a/htdocs/core/class/utils.class.php
+++ b/htdocs/core/class/utils.class.php
@@ -34,6 +34,9 @@ class Utils
*/
public $db;
+ public $error;
+ public $errors;
+
public $output; // Used by Cron method to return message
public $result; // Used by Cron method to return data
diff --git a/htdocs/core/modules/action/rapport.class.php b/htdocs/core/modules/action/rapport.class.php
index 8c0964b1378..d91b748d7d5 100644
--- a/htdocs/core/modules/action/rapport.class.php
+++ b/htdocs/core/modules/action/rapport.class.php
@@ -40,6 +40,11 @@ class CommActionRapport
*/
public $db;
+ public $error;
+
+ public $errors;
+
+
/**
* @var string description
*/
diff --git a/htdocs/modulebuilder/index.php b/htdocs/modulebuilder/index.php
index a6f3431bd2e..f871d916aa7 100644
--- a/htdocs/modulebuilder/index.php
+++ b/htdocs/modulebuilder/index.php
@@ -4461,7 +4461,7 @@ if ($module == 'initmodule') {
print '';
print '';
print ' ('.$langs->trans("GeneratedOn").' '.dol_print_date(dol_filemtime($outputfiledocpdf), 'dayhour').')';
- print ' '.img_picto($langs->trans("Delete"), 'delete').'';
+ print ' '.img_picto($langs->trans("Delete"), 'delete').'';
}
print '
';
diff --git a/htdocs/public/recruitment/index.php b/htdocs/public/recruitment/index.php
index 23a180b9a7b..4f82139656c 100644
--- a/htdocs/public/recruitment/index.php
+++ b/htdocs/public/recruitment/index.php
@@ -252,7 +252,7 @@ if (is_array($results)) {
}
}
print '';
- print $tmpuser->getFullName(-1);
+ print $tmpuser->getFullName($langs);
print ' '.dol_print_email($emailforcontact, 0, 0, 1, 0, 0, 'envelope');
print '';
print '
';