diff --git a/htdocs/societe/list.php b/htdocs/societe/list.php
index d5ef1057905..dfb5f5ee279 100644
--- a/htdocs/societe/list.php
+++ b/htdocs/societe/list.php
@@ -1725,7 +1725,7 @@ while ($i < min($num, $limit)) {
if (!empty($arrayfields['s.fk_stcomm']['checked'])) {
// Prospect status
- print '
';
+ print ' ';
print ' ';
print $companystatic->LibProspCommStatut($obj->stcomm_id, 2, $prospectstatic->cacheprospectstatus[$obj->stcomm_id]['label'], $obj->stcomm_picto);
print ' - ';
diff --git a/htdocs/user/card.php b/htdocs/user/card.php
index 238724f7ae0..5a5a5d6fc9e 100644
--- a/htdocs/user/card.php
+++ b/htdocs/user/card.php
@@ -2111,7 +2111,7 @@ if ($action == 'create' || $action == 'adduserldap') {
print '';
// Firstname
- print " ".'| '.$langs->trans("Firstname").' | ';
+ print ' | '.$langs->trans("Firstname").' | ';
print '';
if ($caneditfield && !$object->ldap_sid) {
print '';
@@ -2239,7 +2239,7 @@ if ($action == 'create' || $action == 'adduserldap') {
print ' | ';
// Hierarchy
- print ' | '.$langs->trans("HierarchicalResponsible").' | ';
+ print ' | '.$langs->trans("HierarchicalResponsible").' | ';
print '';
if ($caneditfield) {
print img_picto('', 'user').$form->select_dolusers($object->fk_user, 'fk_user', 1, array($object->id), 0, '', 0, $object->entity, 0, 0, '', 0, '', 'widthcentpercentminusx maxwidth300');
@@ -2254,7 +2254,7 @@ if ($action == 'create' || $action == 'adduserldap') {
// Expense report validator
if (isModEnabled('expensereport')) {
- print ' | | ';
+ print ' | | ';
$text = $langs->trans("ForceUserExpenseValidator");
print $form->textwithpicto($text, $langs->trans("ValidatorIsSupervisorByDefault"), 1, 'help');
print ' | ';
@@ -2273,7 +2273,7 @@ if ($action == 'create' || $action == 'adduserldap') {
// Holiday request validator
if (isModEnabled('holiday')) {
- print ' | ';
+ print ' | | ';
$text = $langs->trans("ForceUserHolidayValidator");
print $form->textwithpicto($text, $langs->trans("ValidatorIsSupervisorByDefault"), 1, 'help');
print ' | ';
@@ -2336,8 +2336,11 @@ if ($action == 'create' || $action == 'adduserldap') {
print ' ';
- print '
';
+ print '
';
+
+ print ' ';
// Date access validity
print '| '.$langs->trans("RangeOfLoginValidity").' | ';
| |