From 956dd418c02d74c5d74bd4b7adcc95725fe0e8ea Mon Sep 17 00:00:00 2001 From: alec Date: Thu, 2 Apr 2009 18:31:38 +0000 Subject: - Fix service not available error when pressing back from compose dialog (#1485552) git-svn-id: https://svn.roundcube.net/trunk@2373 208e9e7b-5314-0410-a742-e7e81cd9613c --- roundcubemail/CHANGELOG | 1 + roundcubemail/program/steps/mail/list.inc | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/roundcubemail/CHANGELOG b/roundcubemail/CHANGELOG index 91a9b6e1f..e7128e841 100644 --- a/roundcubemail/CHANGELOG +++ b/roundcubemail/CHANGELOG @@ -1,6 +1,7 @@ CHANGELOG RoundCube Webmail =========================== +- Fix service not available error when pressing back from compose dialog (#1485552) - Fix using mail() on Windows (#1485779) - Fix word wrapping in message-part's
s for printing (#1485787)
 - Fix incorrect word wrapping in outgoing plaintext multibyte messages (#1485714)
diff --git a/roundcubemail/program/steps/mail/list.inc b/roundcubemail/program/steps/mail/list.inc
index 5cc2a574d..d32e93996 100644
--- a/roundcubemail/program/steps/mail/list.inc
+++ b/roundcubemail/program/steps/mail/list.inc
@@ -19,6 +19,10 @@
 
 */
 
+if (!$OUTPUT->ajax_call) {
+  return;
+}
+
 // is there a sort type for this request?
 if ($sort = get_input_value('_sort', RCUBE_INPUT_GET))
 {
-- 
cgit v1.2.3