summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2012-04-11 16:03:16 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2012-04-11 16:03:16 +0000
commitec910a781700d3c17d62423d44116e9747c5fb99 (patch)
tree4924753a8b359d10450f5345c23b1e00d27e75c5
parent82cdbe7707c21314509133818e73a82831ab6700 (diff)
- Revert r6060, fix #1487822 using css-only
git-svn-id: https://svn.roundcube.net/trunk@6062 208e9e7b-5314-0410-a742-e7e81cd9613c
-rw-r--r--roundcubemail/CHANGELOG2
-rw-r--r--roundcubemail/program/include/rcube_json_output.php2
-rw-r--r--roundcubemail/program/steps/mail/list.inc8
-rw-r--r--roundcubemail/skins/default/mail.css1
-rw-r--r--roundcubemail/skins/larry/mail.css1
5 files changed, 5 insertions, 9 deletions
diff --git a/roundcubemail/CHANGELOG b/roundcubemail/CHANGELOG
index fa01e5fb1..a074cab36 100644
--- a/roundcubemail/CHANGELOG
+++ b/roundcubemail/CHANGELOG
@@ -2,7 +2,7 @@ CHANGELOG Roundcube Webmail
===========================
- Set flexible width to login form fields (#1488418)
-- Force page reload if list columns changed in IE8 (#1487822)
+- Fix re-draw bug on list columns change in IE8 (#1487822)
- Allow mass-removal of addresses from a group (#1487748)
- Fix removing all contacts on import to LDAP addressbook
- Fix so "Back" from compose/show doesn't reset search request (#1488238)
diff --git a/roundcubemail/program/include/rcube_json_output.php b/roundcubemail/program/include/rcube_json_output.php
index f062d4b71..99f08f5c9 100644
--- a/roundcubemail/program/include/rcube_json_output.php
+++ b/roundcubemail/program/include/rcube_json_output.php
@@ -212,7 +212,7 @@ class rcube_json_output
public function redirect($p = array(), $delay = 1)
{
$location = rcmail::get_instance()->url($p);
- $this->remote_response(sprintf("window.setTimeout(function(){ %s.redirect('%s',true); }, %d);", JS_OBJECT_NAME, $location, $delay));
+ $this->remote_response("window.setTimeout(\"location.href='{$location}'\", $delay);");
exit;
}
diff --git a/roundcubemail/program/steps/mail/list.inc b/roundcubemail/program/steps/mail/list.inc
index 930758354..dad86663a 100644
--- a/roundcubemail/program/steps/mail/list.inc
+++ b/roundcubemail/program/steps/mail/list.inc
@@ -51,15 +51,9 @@ if ($cols = get_input_value('_cols', RCUBE_INPUT_GET))
$save_arr['list_cols'] = explode(',', $cols);
}
-if ($save_arr) {
+if ($save_arr)
$RCMAIL->user->save_prefs($save_arr);
- // force page reload if list columns changed in IE8 (#1487822)
- if ($save_arr['list_cols'] && $OUTPUT->browser->ie && $OUTPUT->browser->ver == 8) {
- $OUTPUT->redirect(array('_mbox' => $RCMAIL->storage->get_folder()), 0);
- }
-}
-
$mbox_name = $RCMAIL->storage->get_folder();
$threading = (bool) $RCMAIL->storage->get_threading();
diff --git a/roundcubemail/skins/default/mail.css b/roundcubemail/skins/default/mail.css
index 1cd1fe5d5..2661afdf5 100644
--- a/roundcubemail/skins/default/mail.css
+++ b/roundcubemail/skins/default/mail.css
@@ -681,6 +681,7 @@ body.messagelist
#messagelist thead tr td.subject
{
padding-left: 18px;
+ width: 99%;
}
#messagelist tbody tr td
diff --git a/roundcubemail/skins/larry/mail.css b/roundcubemail/skins/larry/mail.css
index 857389576..a4af1b8c2 100644
--- a/roundcubemail/skins/larry/mail.css
+++ b/roundcubemail/skins/larry/mail.css
@@ -579,6 +579,7 @@ a.iconbutton.threadmode.selected {
width: 26px;
}
+#messagelist thead tr td.subject,
#messagelist tbody tr td.subject {
width: 99%;
white-space: nowrap;