// Copyright: Copyright (C) 2004-2007 Pristine Communications // null_error_handler: Temporarily disable the normal error handler // $php_errormsg was set in the original error handler. We have to set it manually. function null_error_handler($no, $message, $file, $line, $context) { $GLOBALS["php_errormsg"] = $message; return; } ?>