diff --git a/htdocs/adherents/list.php b/htdocs/adherents/list.php
index d27c2365f47..79841823d08 100644
--- a/htdocs/adherents/list.php
+++ b/htdocs/adherents/list.php
@@ -566,7 +566,7 @@ if (! empty($arrayfields['d.tms']['checked']))
// Status
if (! empty($arrayfields['d.statut']['checked']))
{
- print '
';
+ print ' | ';
$liststatus=array(
'-1'=>$langs->trans("Draft"),
'1'=>$langs->trans("Validated"),
@@ -613,7 +613,7 @@ $reshook=$hookmanager->executeHooks('printFieldListTitle',$parameters); // No
print $hookmanager->resPrint;
if (! empty($arrayfields['d.datec']['checked'])) print_liste_field_titre($arrayfields['d.datec']['label'],$_SERVER["PHP_SELF"],"d.datec","",$param,'align="center" class="nowrap"',$sortfield,$sortorder);
if (! empty($arrayfields['d.tms']['checked'])) print_liste_field_titre($arrayfields['d.tms']['label'],$_SERVER["PHP_SELF"],"d.tms","",$param,'align="center" class="nowrap"',$sortfield,$sortorder);
-if (! empty($arrayfields['d.statut']['checked'])) print_liste_field_titre($arrayfields['d.statut']['label'],$_SERVER["PHP_SELF"],"d.statut","",$param,'align="right"',$sortfield,$sortorder);
+if (! empty($arrayfields['d.statut']['checked'])) print_liste_field_titre($arrayfields['d.statut']['label'],$_SERVER["PHP_SELF"],"d.statut","",$param,'class="right"',$sortfield,$sortorder);
print_liste_field_titre($selectedfields, $_SERVER["PHP_SELF"],"",'','','align="center"',$sortfield,$sortorder,'maxwidthsearch ');
print "\n";
@@ -842,7 +842,7 @@ while ($i < min($num, $limit))
// Status
if (! empty($arrayfields['d.statut']['checked']))
{
- print ' | ';
+ print ' | ';
print $memberstatic->LibStatut($obj->statut,$obj->subscription,$datefin,5);
print ' | ';
if (! $i) $totalarray['nbfield']++;
diff --git a/htdocs/adherents/subscription.php b/htdocs/adherents/subscription.php
index 0c5618ca1d9..da35a182f24 100644
--- a/htdocs/adherents/subscription.php
+++ b/htdocs/adherents/subscription.php
@@ -570,7 +570,7 @@ if ($rowid > 0)
print '';
print '';
if ($action == 'editthirdparty')
diff --git a/htdocs/adherents/subscription/list.php b/htdocs/adherents/subscription/list.php
index b6e3afc8a19..7e97752af5d 100644
--- a/htdocs/adherents/subscription/list.php
+++ b/htdocs/adherents/subscription/list.php
@@ -355,7 +355,7 @@ if (! empty($arrayfields['d.date_fin']['checked']))
if (! empty($arrayfields['d.amount']['checked']))
{
- print ' | ';
+ print ' | ';
print '';
print ' | ';
}
@@ -380,7 +380,7 @@ if (! empty($arrayfields['d.tms']['checked']))
}
// Action column
-print '';
+print ' | ';
$searchpicto=$form->showFilterButtons();
print $searchpicto;
print ' | ';
@@ -427,7 +427,7 @@ if (! empty($arrayfields['d.date_fin']['checked']))
}
if (! empty($arrayfields['d.amount']['checked']))
{
- print_liste_field_titre("Amount",$_SERVER["PHP_SELF"],"c.subscription",$param,"",'align="right"',$sortfield,$sortorder);
+ print_liste_field_titre("Amount",$_SERVER["PHP_SELF"],"c.subscription",$param,"",'class="right"',$sortfield,$sortorder);
}
// Extra fields
include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_search_title.tpl.php';
diff --git a/htdocs/adherents/type.php b/htdocs/adherents/type.php
index 499f41dce3e..e7c71d06e40 100644
--- a/htdocs/adherents/type.php
+++ b/htdocs/adherents/type.php
@@ -602,7 +602,7 @@ if ($rowid > 0)
print ' | ';
- print '';
+ print ' | ';
print '';
print ' ';
print '';
|