- fix errors handling in ajax requests (#1485872)

release-0.6
alecpl 15 years ago
parent eaf947cef6
commit ac4882f35d

@ -85,8 +85,13 @@ else {
}
// compose page content
// Ajax request
if ($OUTPUT && ($OUTPUT instanceof rcube_json_output)) {
header("HTTP/1.0 $ERROR_CODE $__error_title");
die;
}
// compose page content
$__page_content = <<<EOF
<div>
<h3 class="error-title">$__error_title</h3>
@ -94,8 +99,6 @@ $__page_content = <<<EOF
</div>
EOF;
if ($OUTPUT && $OUTPUT->template_exists('error')) {
$OUTPUT->reset();
$OUTPUT->send('error');

Loading…
Cancel
Save