mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-24 17:04:14 +01:00
do NOT log not found template because of missing $row_cont expansion on server-side
This commit is contained in:
parent
2d4980f080
commit
0efb94f2bf
@ -101,8 +101,11 @@ class Template extends Etemplate\Widget
|
||||
return $template;
|
||||
}
|
||||
}
|
||||
|
||||
error_log(__METHOD__."('$name', '$template_set', '$version', '$load_via') template NOT found!");
|
||||
// do NOT log not found template because of missing $row_cont expansion on server-side
|
||||
if (substr($name, 0, 10) !== '$row_cont[')
|
||||
{
|
||||
error_log(__METHOD__."('$name', '$template_set', '$version', '$load_via') template NOT found!");
|
||||
}
|
||||
return false;
|
||||
}
|
||||
$reader = new XMLReader();
|
||||
|
Loading…
Reference in New Issue
Block a user