From 996bd91367cf9f015a68f87ed1c7ad033c1e47ae Mon Sep 17 00:00:00 2001 From: alec Date: Tue, 26 May 2009 16:54:55 +0000 Subject: - fix errors handling in ajax requests (#1485872) git-svn-id: https://svn.roundcube.net/trunk@2547 208e9e7b-5314-0410-a742-e7e81cd9613c --- roundcubemail/program/steps/error.inc | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/roundcubemail/program/steps/error.inc b/roundcubemail/program/steps/error.inc index a42a1f680..f8bb8461d 100644 --- a/roundcubemail/program/steps/error.inc +++ b/roundcubemail/program/steps/error.inc @@ -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 = <<

$__error_title

@@ -94,8 +99,6 @@ $__page_content = << EOF; - - if ($OUTPUT && $OUTPUT->template_exists('error')) { $OUTPUT->reset(); $OUTPUT->send('error'); -- cgit v1.2.3