added option to suppress a header in the gui

This commit is contained in:
SJ
2015-03-20 15:48:00 +01:00
parent f7bafa1932
commit 87ee036c59
2 changed files with 5 additions and 0 deletions

View File

@ -189,6 +189,10 @@ class ModelSearchMessage extends Model {
$has_journal = $this->remove_journal($msg);
if(Registry::get('auditor_user') == 0 && HEADER_LINE_TO_HIDE) {
$msg = preg_replace("/" . HEADER_LINE_TO_HIDE . ".{1,}\n/i", "", $msg);
}
$pos = strpos($msg, "\n\r\n");
if($pos == false) {
$pos = strpos($msg, "\n\n");