diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2013-01-28 20:24:59 +0100 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2013-01-28 20:27:27 +0100 |
commit | 72e24b7a632b7f713082d9100176064814cf2f61 (patch) | |
tree | e827c7a39c7442506cbb791a01a3d9a79526b690 /program/include/rcmail_output_html.php | |
parent | 66d30994853ba9282c1d8f9cc189a195e79e8b9a (diff) |
Catch connection timeouts on message sending form submissions
Diffstat (limited to 'program/include/rcmail_output_html.php')
-rw-r--r-- | program/include/rcmail_output_html.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/rcmail_output_html.php b/program/include/rcmail_output_html.php index 05904e58b..88af550ed 100644 --- a/program/include/rcmail_output_html.php +++ b/program/include/rcmail_output_html.php @@ -380,7 +380,7 @@ class rcmail_output_html extends rcmail_output // unlock interface after iframe load $unlock = preg_replace('/[^a-z0-9]/i', '', $_REQUEST['_unlock']); if ($this->framed) { - array_unshift($this->js_commands, array('set_busy', false, null, $unlock)); + array_unshift($this->js_commands, array('iframe_loaded', $unlock)); } else if ($unlock) { array_unshift($this->js_commands, array('hide_message', $unlock)); |