X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=include%2Fdbm.php;h=d28d49d63b4b53647392f5d6c928fdba5b76d3bf;hb=f94a10bf00de699a5f3d22ea74665053a5661175;hp=fedc2e4fdb23881e694a7b2cbb3e218f5844614d;hpb=7d1e54664a141919864e8b7dfa2ee4f4307fe6ad;p=friendica.git diff --git a/include/dbm.php b/include/dbm.php index fedc2e4fdb..d28d49d63b 100644 --- a/include/dbm.php +++ b/include/dbm.php @@ -96,18 +96,11 @@ class dbm { public static function date($date = 'now') { $timestamp = strtotime($date); - // Workaround for 3.5.1 + // Don't allow lower date strings as '0001-01-01 00:00:00' if ($timestamp < -62135596800) { - return '0000-00-00 00:00:00'; + $timestamp = -62135596800; } - // The above will be removed in 3.5.2 - // The following will then be enabled - // Don't allow lower date strings as '0001-01-01 00:00:00' - //if ($timestamp < -62135596800) { - // $timestamp = -62135596800; - //} - return date('Y-m-d H:i:s', $timestamp); } }