summaryrefslogtreecommitdiff
path: root/roundcubemail/program/steps/mail/func.inc
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-05-15 12:15:58 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-05-15 12:15:58 +0000
commita40cf88d649d0770d9b214c490c8e413e0425e35 (patch)
tree3c477fd8d11163bf3cc787240084cb52496d5342 /roundcubemail/program/steps/mail/func.inc
parentb6208965fd5a1702be740166daa33c85c4bdd8cf (diff)
- remove offline message list generation on IE, this doesn't realy improve performance now
git-svn-id: https://svn.roundcube.net/trunk@3620 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/steps/mail/func.inc')
-rw-r--r--roundcubemail/program/steps/mail/func.inc8
1 files changed, 1 insertions, 7 deletions
diff --git a/roundcubemail/program/steps/mail/func.inc b/roundcubemail/program/steps/mail/func.inc
index 09ef4c567..01b7c1f00 100644
--- a/roundcubemail/program/steps/mail/func.inc
+++ b/roundcubemail/program/steps/mail/func.inc
@@ -221,7 +221,7 @@ function rcmail_message_list($attrib)
* return javascript commands to add rows to the message list
* or to replace the whole list (IE only)
*/
-function rcmail_js_message_list($a_headers, $insert_top=FALSE, $replace=TRUE, $head_replace=FALSE)
+function rcmail_js_message_list($a_headers, $insert_top=FALSE, $head_replace=FALSE)
{
global $CONFIG, $IMAP, $OUTPUT;
@@ -251,9 +251,6 @@ function rcmail_js_message_list($a_headers, $insert_top=FALSE, $replace=TRUE, $h
if(($key = array_search('flag', $a_show_cols)) !== FALSE)
unset($a_show_cols[$key]);
- if ($OUTPUT->browser->ie && $replace)
- $OUTPUT->command('offline_message_list', true);
-
// loop through message headers
foreach ($a_headers as $n => $header)
{
@@ -314,9 +311,6 @@ function rcmail_js_message_list($a_headers, $insert_top=FALSE, $replace=TRUE, $h
$a_msg_flags,
$insert_top);
}
-
- if ($browser->ie && $replace)
- $OUTPUT->command('offline_message_list', false);
}