]> git.mxchange.org Git - friendica.git/blobdiff - include/dbm.php
Resubmit all profiles on directory change
[friendica.git] / include / dbm.php
index 0e12417501efd8cdae28eee5a7e00b8f7c3c39a0..d28d49d63b4b53647392f5d6c928fdba5b76d3bf 100644 (file)
@@ -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);
        }
 }
 ?>