diff options
| author | alecpl <alec@alec.pl> | 2009-04-22 06:21:07 +0000 | 
|---|---|---|
| committer | alecpl <alec@alec.pl> | 2009-04-22 06:21:07 +0000 | 
| commit | 324f985e4784378d79b46263eea61846e706652c (patch) | |
| tree | b8015e201e09223627e6fd0f9ea5023fdb958e7e /program | |
| parent | 9ff9f516d353a853c7a79fc9c7bd0d842c413011 (diff) | |
- fix #1485812
Diffstat (limited to 'program')
| -rw-r--r-- | program/steps/mail/func.inc | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/program/steps/mail/func.inc b/program/steps/mail/func.inc index d8fc3abd8..fae864757 100644 --- a/program/steps/mail/func.inc +++ b/program/steps/mail/func.inc @@ -394,7 +394,7 @@ function rcmail_js_message_list($a_headers, $insert_top=FALSE)    $browser = new rcube_browser;    $OUTPUT->command('set_message_coltypes', $a_show_cols); -  if ($browser->ie) +  if ($browser->ie && !$insert_top)      $OUTPUT->command('offline_message_list', true);    // loop through message headers @@ -456,7 +456,7 @@ function rcmail_js_message_list($a_headers, $insert_top=FALSE)        $insert_top);      } -    if ($browser->ie) +    if ($browser->ie && !$insert_top)        $OUTPUT->command('offline_message_list', false);    } | 
