From 5accfa08f52a31da74715c38a1d7a12793fa33c7 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Thu, 15 Dec 2005 16:02:50 +0000 Subject: - Patch #41133 by DriesK: as of PHP 5.1.0, strtotime() returns FALSE on failure instead of -1. Changed code to be compatible with all versions. --- modules/comment/comment.module | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'modules/comment/comment.module') diff --git a/modules/comment/comment.module b/modules/comment/comment.module index c4dac7d36..b4a5cdbd4 100644 --- a/modules/comment/comment.module +++ b/modules/comment/comment.module @@ -517,7 +517,8 @@ function comment_validate(&$edit) { } else { $date = isset($edit['date']) ? $edit['date'] : 'now'; - if (strtotime($date) != -1) { + // As of PHP 5.1.0, strtotime returns FALSE upon failure instead of -1. + if (strtotime($date) > 0) { $edit['timestamp'] = strtotime($date); } else { -- cgit v1.2.3