diff --git a/htdocs/cron/list.php b/htdocs/cron/list.php
index 11d2b3acd35..ab905f745de 100644
--- a/htdocs/cron/list.php
+++ b/htdocs/cron/list.php
@@ -394,7 +394,7 @@ print '
| ';
print ' | ';
print '';
print $form->selectarray('search_status', array('0'=>$langs->trans("Disabled"), '1'=>$langs->trans("Enabled"), '-2'=>$langs->trans("EnabledAndDisabled"), '2'=>$langs->trans("Archived")), $search_status, 1);
-print ' | ';
+print ' | ';
$searchpicto=$form->showFilterButtons();
print $searchpicto;
print ' | ';
@@ -505,11 +505,11 @@ if ($num > 0)
if(!empty($obj->dateend)) {print dol_print_date($db->jdate($obj->dateend), 'dayhour');}
print '';
- print '';
+ print ' | ';
if (!empty($obj->maxrun)) {print $obj->maxrun;}
print ' | ';
- print '';
+ print ' | ';
if (!empty($obj->nbrun)) {print $obj->nbrun;} else {print '0';}
print ' | ';
@@ -554,11 +554,11 @@ if ($num > 0)
print '';
// Status
- print '';
+ print ' | ';
print $object->getLibStatut(3);
print ' | ';
- print '';
+ print ' | ';
$backtourl = urlencode($_SERVER["PHP_SELF"].'?'.$param.($sortfield?'&sortfield='.$sortfield:'').($sortorder?'&sortorder='.$sortorder:''));
if ($user->rights->cron->create)
|