Aleksander Machniak
2014-09-10 8cc65d1f5fae71e2ee07748e82ab274d8d45304b
program/lib/Roundcube/rcube_message.php
@@ -75,8 +75,8 @@
    function __construct($uid, $folder = null)
    {
        // decode combined UID-folder identifier
        if (preg_match('/^\d+-[^,]+$/', $uid)) {
            list($uid, $folder) = explode('-', $uid);
        if (preg_match('/^\d+-.+/', $uid)) {
            list($uid, $folder) = explode('-', $uid, 2);
        }
        $this->uid  = $uid;