Marius Burkard
2016-02-04 b31c14924839e573911c8dcf4423831c1c484c2b
- removed subject header from notifications (Fixes #3319)
1 files modified
5 ■■■■ changed files
server/lib/classes/monitor_tools.inc.php 5 ●●●● patch | view | raw | blame | history
server/lib/classes/monitor_tools.inc.php
@@ -711,7 +711,10 @@
            }
            if($inHeader == true) {
                $parts = explode(':', $lines[$l], 2);
                if(strtolower($parts[0]) == 'subject') $mailSubject = trim($parts[1]);
                if(strtolower($parts[0]) == 'subject') {
                    $mailSubject = trim($parts[1]);
                    continue;
                }
                unset($parts);
                $mailHeaders .= trim($lines[$l]) . "\n";
            } else {