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

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