diff options
author | alecpl <alec@alec.pl> | 2009-04-02 18:31:38 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2009-04-02 18:31:38 +0000 |
commit | 6491ed9bbce5eadad5aa433014cb53c50a5aa2f5 (patch) | |
tree | 084384fb66a2510f9893edc008aea8231a76bb6a /program/steps | |
parent | 5d110184c06f937d41fff3e0cc4d4d40314caf72 (diff) |
- Fix service not available error when pressing back from compose dialog (#1485552)
Diffstat (limited to 'program/steps')
-rw-r--r-- | program/steps/mail/list.inc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/program/steps/mail/list.inc b/program/steps/mail/list.inc index 5cc2a574d..d32e93996 100644 --- a/program/steps/mail/list.inc +++ b/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)) { |