]> git.mxchange.org Git - friendica.git/commitdiff
Deprecate DBM::date()
authorHypolite Petovan <mrpetovan@gmail.com>
Sun, 4 Feb 2018 02:39:53 +0000 (21:39 -0500)
committerHypolite Petovan <mrpetovan@gmail.com>
Sun, 4 Feb 2018 02:39:53 +0000 (21:39 -0500)
src/Database/DBM.php

index 6f14c12b8c51af9d878597f51a0e3d4228926851..7daf6b545f0c972a91db565d8d633011b262ab15 100644 (file)
@@ -114,19 +114,13 @@ class DBM
        /**
         * Checks Converts any date string into a SQL compatible date string
         *
+        * @deprecated since version 3.6
         * @param string $date a date string in any format
         *
         * @return string SQL style date string
         */
        public static function date($date = 'now')
        {
-               $timestamp = strtotime($date);
-
-               // Don't allow lower date strings as '0001-01-01 00:00:00'
-               if ($timestamp < -62135596800) {
-                       $timestamp = -62135596800;
-               }
-
-               return date(DateTimeFormat::MYSQL, (int)$timestamp);
+               return DateTimeFormat::utc($date);
        }
 }