mydomain.com => example.com

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@75178 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Slawomir Pucia 2002-03-25 17:43:45 +00:00
parent cd9154d583
commit 8ab5fcbe11

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.24 $ -->
<!-- $Revision: 1.25 $ -->
<chapter id="features.error-handling">
<title>Error Handling</title>
@ -227,7 +227,7 @@ function userErrorHandler ($errno, $errmsg, $filename, $linenum, $vars) {
// save to the error log, and e-mail me if there is a critical user error
error_log($err, 3, "/usr/local/php4/error.log");
if ($errno == E_USER_ERROR)
mail("phpdev@mydomain.com","Critical User Error",$err);
mail("phpdev@example.com","Critical User Error",$err);
}