From e48f8945b32ab5b67f1cdeb53a37d3d196e31e4d Mon Sep 17 00:00:00 2001 From: Aleksander Machniak <alec@alec.pl> Date: Fri, 20 May 2016 05:19:01 -0400 Subject: [PATCH] Fix bug where message list columns could be in wrong order after column drag-n-drop and list sorting --- index.php | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/index.php b/index.php index 952ed06..f7758cb 100644 --- a/index.php +++ b/index.php @@ -2,7 +2,7 @@ /* +-------------------------------------------------------------------------+ | Roundcube Webmail IMAP Client | - | Version 1.1.1 | + | Version 1.1.5 | | | | Copyright (C) 2005-2015, The Roundcube Dev Team | | | @@ -131,7 +131,7 @@ // prevent redirect to compose with specified ID (#1488226) if ($query['_action'] == 'compose' && !empty($query['_id'])) { - $query = array(); + $query = array('_action' => 'compose'); } } -- Gitblit v1.9.1