diff --git a/htdocs/core/lib/cron.lib.php b/htdocs/core/lib/cron.lib.php
index 6aeaad4d628..d7a0a57ac37 100644
--- a/htdocs/core/lib/cron.lib.php
+++ b/htdocs/core/lib/cron.lib.php
@@ -116,7 +116,7 @@ function dol_print_cron_urls()
{
print $langs->trans("CronExplainHowToRunUnix");
print '
';
- print '
';
+ print '
';
}
else
{
diff --git a/htdocs/cron/list.php b/htdocs/cron/list.php
index 24edb62aac8..eb365dbd5b8 100644
--- a/htdocs/cron/list.php
+++ b/htdocs/cron/list.php
@@ -182,8 +182,18 @@ print '';
print_barre_liste($pagetitle, $page, $_SERVER["PHP_SELF"], $param, $sortfield, $sortorder, $stringcurrentdate, $num, 0, 'title_setup', 0, '', '', $limit);
-print $langs->trans('CronInfo');
-print "
";
+
+// Line with explanation and button new job
+if (! $user->rights->cron->create)
+{
+ $buttontoshow.=''.$langs->trans("CronCreateJob").'';
+}
+else
+{
+ $buttontoshow.=''.$langs->trans("CronCreateJob").'';
+}
+print '
| '.$langs->trans('CronInfo').' | '.$buttontoshow.' |