Aleksander Machniak
2016-04-10 d54eb6c95104316180bbaa777f2d95f8d88c0f3c
CS fixes
3 files modified
7 ■■■■■ changed files
CHANGELOG 1 ●●●● patch | view | raw | blame | history
program/lib/Roundcube/rcube_result_index.php 1 ●●●● patch | view | raw | blame | history
program/lib/Roundcube/rcube_result_thread.php 5 ●●●●● patch | view | raw | blame | history
CHANGELOG
@@ -16,6 +16,7 @@
- newmail_notifier: Refactor desktop notifications
- Fix so contactlist_fields option can be set via config file
- Fix so SPECIAL-USE assignments are forced only until user sets special folders (#4782)
- Fix performance in reverting order of THREAD result
RELEASE 1.1.4
-------------
program/lib/Roundcube/rcube_result_index.php
@@ -259,7 +259,6 @@
            return;
        }
        // @TODO: maybe do this in chunks
        $data = $this->get();
        $data = array_reverse($data);
        $this->raw_data = implode(self::SEPARATOR_ELEMENT, $data);
program/lib/Roundcube/rcube_result_thread.php
@@ -252,8 +252,9 @@
            return;
        }
        $raw_data_reverse = implode(self::SEPARATOR_ELEMENT, array_reverse(explode(self::SEPARATOR_ELEMENT, $this->raw_data)));
        $this->raw_data = $raw_data_reverse;
        $data = explode(self::SEPARATOR_ELEMENT, $this->raw_data);
        $data = array_reverse($data);
        $this->raw_data = implode(self::SEPARATOR_ELEMENT, $data);
        $this->meta['pos'] = array();
    }