diff options
author | Urban Müller | 2019-09-13 18:16:43 +0200 |
---|---|---|
committer | Urban Müller | 2019-09-16 13:51:58 +0200 |
commit | 7a76228a0755e5211d124750423feb0fcfda6c94 (patch) | |
tree | 85c10ecff3e9c07f4cc60b118c559d18ff196e5c /it.class | |
parent | b165f909a36748f0d749c250cdba3006ccd23105 (diff) | |
download | itools-7a76228a0755e5211d124750423feb0fcfda6c94.tar.gz itools-7a76228a0755e5211d124750423feb0fcfda6c94.tar.bz2 itools-7a76228a0755e5211d124750423feb0fcfda6c94.zip |
lowercase minor errors (twin, debugparams)
Diffstat (limited to 'it.class')
-rw-r--r-- | it.class | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -285,7 +285,12 @@ static function error($p = array()) $body = it::replace(array('(pw|passw|password|secret)(\' => |\] => |=)[^&\s]*' => '$1$2********'), $body, array('utf8' => false)); } - it::mail(array('To' => $p['to'], 'Subject' => ($p['fatal'] ? "Fatal: " : "Error: ") . substr($p['title'], 0, 160), 'Body' => $body, 'Cc' => $GLOBALS['it_defaultconfig']['error_cc'], 'forcemail' => !it::is_devel())); + $type = ($p['fatal'] ? "Fatal: " : "Error: "); + $debugparams = it::replace(['^debug_' => ""], it::grep('^debug_(.*)', array_keys($GLOBALS))); + if (!it::is_live() || array_diff($debugparams, it::match('[-\w]+', $GLOBALS['ULTRAHOME'], ['all' => true]), ["devel", "twin", "utf8check", gethostname()])) + $type = mb_strtolower($type); + + it::mail(['To' => $p['to'], 'Subject' => $type . substr($p['title'], 0, 160), 'Body' => $body, 'Cc' => $GLOBALS['it_defaultconfig']['error_cc'], 'forcemail' => !it::is_devel()]); $p['title'] = "Mail: " . $p['title']; } else if ($_SERVER['REMOTE_ADDR'] && EDC('edplain')) # toscreen mode: web |