1
0
mirror of https://github.com/e107inc/e107.git synced 2025-01-17 20:58:30 +01:00

Issue #6 Cron LAN fix.

This commit is contained in:
Cameron 2017-04-12 16:57:47 -07:00
parent d915d249ee
commit 544ff80f98

View File

@ -441,6 +441,7 @@ class cron_admin_ui extends e_admin_ui
if (method_exists($obj, $method_name))
{
$message = str_replace('[x]', $class_name." : ".$method_name, LAN_CRON_62);//Executing config function [b][x][/b]
$message = e107::getParser()->toHtml($message,true);
$mes->add($message, E_MESSAGE_DEBUG);
if ($return == 'boolean')
{
@ -455,6 +456,7 @@ class cron_admin_ui extends e_admin_ui
else
{
$message = str_replace('[x]', $method_name."()", LAN_CRON_63 );//Config function [b][x][/b] NOT found.
$message = e107::getParser()->toHtml($message,true);
$mes->add($message, E_MESSAGE_DEBUG);
}
}