From: Michael Date: Thu, 23 Feb 2017 07:09:55 +0000 (+0000) Subject: Define the lowest possible datetime string as "0001-01-01 00:00:00" X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=06b16cce8b72de01a797568b635cbce650a07a5b;p=friendica.git Define the lowest possible datetime string as "0001-01-01 00:00:00" --- diff --git a/include/dbm.php b/include/dbm.php index e88f2a4d9d..d28d49d63b 100644 --- a/include/dbm.php +++ b/include/dbm.php @@ -95,6 +95,12 @@ class dbm { */ 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('Y-m-d H:i:s', $timestamp); } }