Aleksander Machniak
2014-08-01 5af3b33f97695bd174c36851117523cd37569bf8
program/lib/Roundcube/rcube_utils.php
@@ -795,7 +795,7 @@
     *
     * @return object DateTime instance or false on failure
     */
    public static function anytodatetime($date)
    public static function anytodatetime($date, $timezone = null)
    {
        if (is_object($date) && is_a($date, 'DateTime')) {
            return $date;
@@ -807,7 +807,7 @@
        // try to parse string with DateTime first
        if (!empty($date)) {
            try {
                $dt = new DateTime($date);
                $dt = new DateTime($date, $timezone);
            }
            catch (Exception $e) {
                // ignore