thomascube
2011-05-09 fd540bad79750b20da7db7680f504ef1dc860b38
Rely on mysql server timezone not on PHP

1 files modified
5 ■■■■■ changed files
program/include/rcube_mdb2.php 5 ●●●●● patch | view | raw | blame | history
program/include/rcube_mdb2.php
@@ -574,8 +574,13 @@
     */
    function fromunixtime($timestamp)
    {
        switch ($this->db_provider) {
            case 'mysql':
                return 'FROM_UNIXTIME(' . intval($timestamp) . ')';
            default:
        return date("'Y-m-d H:i:s'", $timestamp);
    }
    }
    /**