1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-30 19:30:25 +02:00

Improve display of cron-tabs on listing page.

This commit is contained in:
Cameron
2013-04-26 15:44:09 -07:00
parent 8a5ee90625
commit 8e8adcfff1

View File

@@ -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 .= "<br />";
$text .= ($weekday != '*') ? LAN_CRON_54 ." ". strftime("%A", mktime(00, 00, 00, 5, $weekday, 2000)) : LAN_CRON_42; // Weekday(s)
return "<a class='e-tip' href=''>".ADMIN_INFO_ICON."</a>
<div class='field-help'>".$text."</div>";
return $text;
}