diff options
author | alecpl <alec@alec.pl> | 2009-10-12 10:58:30 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2009-10-12 10:58:30 +0000 |
commit | 91354e90e81ee9d23633d37b18bd680bc4d459e5 (patch) | |
tree | 2a0a092d0cbd988d1e89f36cb4d7dc397c1ece7f /program/steps/mail/func.inc | |
parent | 4f69328132beae439d1aecb6d35d55392e480eca (diff) |
- performance fix in rcmail_js_message_list()
Diffstat (limited to 'program/steps/mail/func.inc')
-rw-r--r-- | program/steps/mail/func.inc | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/program/steps/mail/func.inc b/program/steps/mail/func.inc index b220edaac..bca2f8cd1 100644 --- a/program/steps/mail/func.inc +++ b/program/steps/mail/func.inc @@ -403,6 +403,13 @@ function rcmail_js_message_list($a_headers, $insert_top=FALSE, $replace=TRUE) $browser = new rcube_browser; $OUTPUT->command('set_message_coltypes', $a_show_cols); + + // remove 'attachment' and 'flag' columns, we don't need them here + if(($key = array_search('attachment', $a_show_cols)) !== FALSE) + unset($a_show_cols[$key]); + if(($key = array_search('flag', $a_show_cols)) !== FALSE) + unset($a_show_cols[$key]); + if ($browser->ie && $replace) $OUTPUT->command('offline_message_list', true); @@ -417,12 +424,6 @@ function rcmail_js_message_list($a_headers, $insert_top=FALSE, $replace=TRUE) $IMAP->set_charset(!empty($header->charset) ? $header->charset : $CONFIG['default_charset']); - // remove 'attachment' and 'flag' columns, we don't need them here - if(($key = array_search('attachment', $a_show_cols)) !== FALSE) - unset($a_show_cols[$key]); - if(($key = array_search('flag', $a_show_cols)) !== FALSE) - unset($a_show_cols[$key]); - // format each col; similar as in rcmail_message_list() foreach ($a_show_cols as $col) { @@ -465,8 +466,8 @@ function rcmail_js_message_list($a_headers, $insert_top=FALSE, $replace=TRUE) $insert_top); } - if ($browser->ie && $replace) - $OUTPUT->command('offline_message_list', false); + if ($browser->ie && $replace) + $OUTPUT->command('offline_message_list', false); } |