Aleksander Machniak
2013-01-07 b5767d94b1c3fd29adffb225526162d69b37d05d
Fix typo
1 files modified
2 ■■■ changed files
program/lib/Roundcube/rcube_addressbook.php 2 ●●● patch | view | raw | blame | history
program/lib/Roundcube/rcube_addressbook.php
@@ -538,7 +538,7 @@
        // The value is a date string, for date we'll
        // use only strict comparison (mode = 1)
        // @TODO: partial search, e.g. match only day and month
        if (in_array($colname, $this->date_fields)) {
        if (in_array($colname, $this->date_cols)) {
            return (($value = rcube_utils::strtotime($value))
                && ($search = rcube_utils::strtotime($search))
                && date('Ymd', $value) == date('Ymd', $search));