diff options
author | friendica <info@friendica.com> | 2012-06-12 02:06:29 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-06-12 02:06:29 -0700 |
commit | b6ff71acaab74169aeef575cd20cb7cba0756c42 (patch) | |
tree | b9d6e81d9daf0e8705a8650703b32a92dcaa1d4f | |
parent | 8eb81a99c6b032436ae397a65a7ca52c576965be (diff) | |
download | volse-hubzilla-b6ff71acaab74169aeef575cd20cb7cba0756c42.tar.gz volse-hubzilla-b6ff71acaab74169aeef575cd20cb7cba0756c42.tar.bz2 volse-hubzilla-b6ff71acaab74169aeef575cd20cb7cba0756c42.zip |
survive bad/un-parseable input to datetime_convert
-rw-r--r-- | include/datetime.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/datetime.php b/include/datetime.php index 3b1491e4d..f6bf1041e 100644 --- a/include/datetime.php +++ b/include/datetime.php @@ -87,7 +87,7 @@ function datetime_convert($from = 'UTC', $to = 'UTC', $s = 'now', $fmt = "Y-m-d $from = 'UTC'; if($to === '') $to = 'UTC'; - if($s === '') + if($s === '' || (! is_string($s))) $s = 'now'; // Slight hackish adjustment so that 'zero' datetime actually returns what is intended |