summaryrefslogtreecommitdiff
path: root/it.class
diff options
context:
space:
mode:
Diffstat (limited to 'it.class')
-rw-r--r--it.class5
1 files changed, 1 insertions, 4 deletions
diff --git a/it.class b/it.class
index 0c83e53..aaae945 100644
--- a/it.class
+++ b/it.class
@@ -198,10 +198,7 @@ function error($p = array(), $body = null, $to = null) # $body and $to deprecate
$body .= $trace ? "Stack: " . print_r(debug_backtrace(), true) . "\n\n" : "";
$pwentry = posix_getpwuid(posix_getuid());
- $from = $pwentry['name'] ? $pwentry['name'] : posix_getuid();
- $mail = new it_mail(array('To' => $p['to'], 'From' => $from, 'Subject' => $p['title']));
- $mail->add_body($body);
- $mail->send();
+ mail($p['to'], $p['title'], $body, "From: " . $pwentry['name'] ? $pwentry['name'] : posix_getuid());
}
else if ($_SERVER['REMOTE_ADDR']) # in shell mode we rely on error_log below
echo "<pre>{$p['title']}\n$body</pre>";