diff options
Diffstat (limited to 'modules/comment/comment.module')
-rw-r--r-- | modules/comment/comment.module | 3 |
1 files changed, 2 insertions, 1 deletions
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 { |