]> git.mxchange.org Git - friendica.git/blobdiff - src/Database/DBM.php
Update use statement lists with new Friendica\Database\dba class
[friendica.git] / src / Database / DBM.php
index 6f14c12b8c51af9d878597f51a0e3d4228926851..bbe60e0f2c5813edb8adbe49431b312747e783b0 100644 (file)
@@ -4,7 +4,6 @@
  */
 namespace Friendica\Database;
 
-use dba;
 use Friendica\Util\DateTimeFormat;
 
 require_once 'include/dba.php';
@@ -114,19 +113,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);
        }
 }