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

removed debug messages from LAN files

This commit is contained in:
Lóna Lore
2015-05-07 10:44:11 +02:00
parent 957291a7b0
commit fe6e09d08d
8 changed files with 20 additions and 38 deletions

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, LAN_CRON_55);
$message = str_replace('[function]', $class_name." : ".$method_name, "Executing config function [b][function][/b]");
$mes->add($message, E_MESSAGE_DEBUG);
if ($return == 'boolean')
{
@@ -456,7 +456,7 @@ class cron_admin_ui extends e_admin_ui
}
else
{
$message = str_replace('[method]', $method_name."()", LAN_CRON_56);
$message = str_replace('[method]', $method_name."()", "Config function [b][method][/b] NOT found.");
$mes->add($message, E_MESSAGE_DEBUG);
}
}