- Patch #705242 by moshe weitzman: _drupal_log_error() messy for CLI requests.
parent
e8cfe92111
commit
a71b70f069
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue