diff options
author | Christian Schneider | 2007-11-26 15:20:02 +0000 |
---|---|---|
committer | Christian Schneider | 2007-11-26 15:20:02 +0000 |
commit | ecb00403de3250014d4a8a1070506fc0577e9ec9 (patch) | |
tree | c7072421ac82fc20067d34057e8b61b581251527 /it.class | |
parent | a144667776f1e255318f1e02355fc209eeee39ed (diff) | |
download | itools-ecb00403de3250014d4a8a1070506fc0577e9ec9.tar.gz itools-ecb00403de3250014d4a8a1070506fc0577e9ec9.tar.bz2 itools-ecb00403de3250014d4a8a1070506fc0577e9ec9.zip |
Make error Cc: depending on ['it_defaultconfig']['error_cc']
Diffstat (limited to 'it.class')
-rw-r--r-- | it.class | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -207,7 +207,7 @@ function error($p = array(), $body = null, $to = null) # $body and $to deprecate $body .= $fulltrace ? "Stack: " . print_r($fulltrace, true) . "\n\n" : ""; $body = it::replace(array('(pw|passw|password|secret)\] => .*' => '$1] => ********'), $body); - mail($p['to'], $p['title'], $body, preg_match("/^live/", $GLOBALS['ULTRASERVERTYPE']) ? "Cc: alert" : null); + mail($p['to'], $p['title'], $body, ($cc = $GLOBALS['it_defaultconfig']['error_cc']) ? "Cc: $cc" : null); } else if ($_SERVER['REMOTE_ADDR']) # in shell mode we rely on error_log below echo "<pre>{$p['title']}\n$body</pre>"; |