X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=include%2Fdbm.php;h=fedc2e4fdb23881e694a7b2cbb3e218f5844614d;hb=bb59f105e719ef420a5cd0dcacfa3e3955dc5a0c;hp=e88f2a4d9d713f0c1e1a85c25278243c7ee27879;hpb=8986edf070f2166292166eb243f084e9b4e97e3b;p=friendica.git diff --git a/include/dbm.php b/include/dbm.php index e88f2a4d9d..fedc2e4fdb 100644 --- a/include/dbm.php +++ b/include/dbm.php @@ -95,6 +95,19 @@ class dbm { */ public static function date($date = 'now') { $timestamp = strtotime($date); + + // Workaround for 3.5.1 + if ($timestamp < -62135596800) { + return '0000-00-00 00:00:00'; + } + + // 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); } }