diff --git a/e107_admin/cron.php b/e107_admin/cron.php index 01e992722..8e68946ec 100644 --- a/e107_admin/cron.php +++ b/e107_admin/cron.php @@ -482,6 +482,11 @@ class cron_admin_form_ui extends e_admin_form_ui $text .= ($month != '*') ? LAN_CRON_53 ." ". strftime("%B", mktime(00, 00, 00, $month, 1, 2000)) : LAN_CRON_41; // Month(s) $text .= "
"; $text .= ($weekday != '*') ? LAN_CRON_54 ." ". strftime("%A", mktime(00, 00, 00, 5, $weekday, 2000)) : LAN_CRON_42; // Weekday(s) + + + return "".ADMIN_INFO_ICON." +
".$text."
"; + return $text; }