Index: includes/common.inc =================================================================== RCS file: /cvs/drupal/drupal/includes/common.inc,v retrieving revision 1.374 diff -u -F^function -r1.374 common.inc --- includes/common.inc 6 Aug 2004 20:18:25 -0000 1.374 +++ includes/common.inc 7 Aug 2004 18:46:30 -0000 @@ -236,7 +236,7 @@ function drupal_goto($path = '', $query * Generates a 404 error if the request can not be handled. */ function drupal_not_found() { - header('HTTP/1.0 404 Not Found'); + header('Status: 404 Not Found'); watchdog('httpd', t('404 error: "%page" not found', array('%page' => check_query($_GET['q'])))); $path = drupal_get_normal_path(variable_get('site_404', '')); @@ -255,7 +255,7 @@ function drupal_not_found() { * Generates a 403 error if the request is not allowed. */ function drupal_access_denied() { - header('HTTP/1.0 403 Forbidden'); + header('Status: 403 Forbidden'); $path = drupal_get_normal_path(variable_get('site_403', '')); $status = MENU_NOT_FOUND;