- Patch #705242 by moshe weitzman: _drupal_log_error() messy for CLI requests.

merge-requests/26/head
Dries Buytaert 2010-04-08 18:11:27 +00:00
parent e8cfe92111
commit a71b70f069
1 changed files with 8 additions and 0 deletions

View File

@ -182,6 +182,14 @@ function _drupal_log_error($error, $fatal = FALSE) {
drupal_add_http_header('Status', '500 Service unavailable (with message)');
}
if (drupal_is_cli()) {
if ($fatal) {
// When called from CLI, simply output a plain text message.
print html_entity_decode(strip_tags(t('%type: %message in %function (line %line of %file).', $error))). "\n";
exit;
}
}
if (isset($_SERVER['HTTP_X_REQUESTED_WITH']) && $_SERVER['HTTP_X_REQUESTED_WITH'] == 'XMLHttpRequest') {
if ($fatal) {
// When called from JavaScript, simply output the error message.