mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-25 01:13:25 +01:00
Changed the error loging routines calling format to new array() style...
This commit is contained in:
parent
1ed266baee
commit
2a3bd14ee4
@ -57,10 +57,10 @@
|
||||
else
|
||||
{
|
||||
Header('Location: ' . $phpgw->link('/home.php'));
|
||||
$phpgw->log->message('W-BadmenuactionVariable, menuaction missing or corrupt: %1',$menuaction);
|
||||
$phpgw->log->message(array('text'=>'W-BadmenuactionVariable, menuaction missing or corrupt: %1','p1'=>$menuaction));
|
||||
if (! is_array($obj->public_functions) || ! $obj->public_functions[$method])
|
||||
{
|
||||
$phpgw->log->message('W-BadmenuactionVariable, attempted to access private method: %1',$method);
|
||||
$phpgw->log->message(array('text'=>'W-BadmenuactionVariable, attempted to access private method: %1','p1'=>$method));
|
||||
}
|
||||
$phpgw->log->commit();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user