Aleksander Machniak
2013-05-23 e3cbe5dd62d9438433b039d682bd8b8215cc1d69
Fix displaying contact with ID divisible by 100 in sql addressbook (#1489121)
2 files modified
3 ■■■■ changed files
CHANGELOG 1 ●●●● patch | view | raw | blame | history
program/steps/addressbook/func.inc 2 ●●● patch | view | raw | blame | history
CHANGELOG
@@ -1,6 +1,7 @@
CHANGELOG Roundcube Webmail
===========================
- Fix displaying contact with ID divisible by 100 in sql addressbook (#1489121)
- Fix browser warnings on PDF plugin detection (#1489118)
- Fix fatal error when parsing UUencoded messages (#1489119)
program/steps/addressbook/func.inc
@@ -773,7 +773,7 @@
            }
        }
        else {
            if (substr($id, -($got_source+1)) == "-$source") {
            if (substr($id, -($got_source+1)) === "-$source") {
                $id = substr($id, 0, -($got_source+1));
            }
            $result[$source][] = $id;