mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:50 +01:00
Add feature "rejected line"
Somes lines has been rejected. This features warn admin directly
This commit is contained in:
parent
f827b8a29b
commit
4e6fa932cb
@ -44,6 +44,7 @@
|
||||
{
|
||||
var $userlang = 'en';
|
||||
var $loaded_apps = array();
|
||||
var $line_rejected = array();
|
||||
|
||||
function translation($warnings = False)
|
||||
{
|
||||
@ -412,6 +413,13 @@
|
||||
$lines = file($appfile);
|
||||
foreach($lines as $line)
|
||||
{
|
||||
$line = eregi_replace("\t+", "\t", $line);
|
||||
$_f_buffer = split("\t", $line);
|
||||
if( count($_f_buffer) > 4 )
|
||||
{
|
||||
$this->line_rejected[] = Array("appfile" => $appfile, "line" => $line);
|
||||
}
|
||||
|
||||
// explode with "\t" and removing "\n" with str_replace, needed to work with mbstring.overload=7
|
||||
list($message_id,$app_name,,$content) = explode("\t",$line);
|
||||
$content=str_replace("\n",'',$content);
|
||||
|
Loading…
Reference in New Issue
Block a user