From ecb00403de3250014d4a8a1070506fc0577e9ec9 Mon Sep 17 00:00:00 2001 From: Christian Schneider Date: Mon, 26 Nov 2007 15:20:02 +0000 Subject: Make error Cc: depending on ['it_defaultconfig']['error_cc'] --- it.class | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'it.class') diff --git a/it.class b/it.class index c6d7714..056300a 100644 --- a/it.class +++ b/it.class @@ -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 "
{$p['title']}\n$body
"; -- cgit v1.2.3