- Patch #131419 by Chris Johnson: renamed the error handler to avoid conflicts with third-party applications.

6.x
Dries Buytaert 2007-03-29 23:17:15 +00:00
parent b20618aa12
commit f3c839634d
1 changed files with 2 additions and 2 deletions

View File

@ -538,7 +538,7 @@ function drupal_http_request($url, $headers = array(), $method = 'GET', $data =
* 0 = Log errors to database.
* 1 = Log errors to database and to screen.
*/
function error_handler($errno, $message, $filename, $line) {
function drupal_error_handler($errno, $message, $filename, $line) {
// If the @ error suppression operator was used, error_reporting is temporarily set to 0
if (error_reporting() == 0) {
return;
@ -1878,7 +1878,7 @@ function _drupal_bootstrap_full() {
require_once './includes/image.inc';
require_once './includes/form.inc';
// Set the Drupal custom error handler.
set_error_handler('error_handler');
set_error_handler('drupal_error_handler');
// Emit the correct charset HTTP header.
drupal_set_header('Content-Type: text/html; charset=utf-8');
// Detect string handling method