Aleksander Machniak
2013-05-28 896e2b4e5193af26f7bfe8ad96f7a90b8d96c35e
program/lib/Roundcube/rcube_utils.php
@@ -733,7 +733,7 @@
            return mktime(0,0,0, intval($matches[2]), intval($matches[3]), intval($matches[1]));
        }
        else if (is_numeric($date)) {
            return $date;
            return (int) $date;
        }
        // Clean malformed data
@@ -762,7 +762,7 @@
            $date = implode(' ', $d);
        }
        return $ts;
        return (int) $ts;
    }