1
0
mirror of https://github.com/e107inc/e107.git synced 2025-04-20 20:51:53 +02:00

only use [x], [y], [z] replacement patterns

This commit is contained in:
Lóna Lore 2015-05-07 10:57:40 +02:00
parent 96f3332fb1
commit 59d3e1504d

View File

@ -442,7 +442,7 @@ class cron_admin_ui extends e_admin_ui
$obj = new $class_name;
if (method_exists($obj, $method_name))
{
$message = str_replace('[function]', $class_name." : ".$method_name, "Executing config function [b][function][/b]");
$message = str_replace('[x]', $class_name." : ".$method_name, "Executing config function [b][x][/b]");
$mes->add($message, E_MESSAGE_DEBUG);
if ($return == 'boolean')
{