X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=include%2Fdbm.php;h=d28d49d63b4b53647392f5d6c928fdba5b76d3bf;hb=47fd9226c3f0b90f460fe2031fa46cbb49a87100;hp=0e12417501efd8cdae28eee5a7e00b8f7c3c39a0;hpb=194d80c326fe9c2c953dbbe815aa65eb1229b22f;p=friendica.git diff --git a/include/dbm.php b/include/dbm.php index 0e12417501..d28d49d63b 100644 --- a/include/dbm.php +++ b/include/dbm.php @@ -93,9 +93,15 @@ class dbm { * @param string $date a date string in any format * @return string SQL style date string */ - public static function date($date) { + public static function date($date = 'now') { $timestamp = strtotime($date); - return date('Y-m-d H:i:s'); + + // 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); } } ?>