From 4bd20b178878cf9f204c94921ecb45dc8cd9af3b Mon Sep 17 00:00:00 2001 From: Frédéric Buclin Date: Wed, 2 Jan 2013 19:44:44 +0100 Subject: Fix bustage due to bug 801664 --- Bugzilla/Bug.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Bugzilla') diff --git a/Bugzilla/Bug.pm b/Bugzilla/Bug.pm index 6680ede55..7c7e0fb37 100644 --- a/Bugzilla/Bug.pm +++ b/Bugzilla/Bug.pm @@ -1990,11 +1990,11 @@ sub _check_field_is_mandatory { sub _check_date_field { my ($invocant, $date) = @_; - return _check_datetime_field($invocant, $date, 1); + return $invocant->_check_datetime_field($date, undef, {date_only => 1}); } sub _check_datetime_field { - my ($invocant, $date_time, $date_only) = @_; + my ($invocant, $date_time, $field, $params) = @_; # Empty datetimes are empty strings or strings only containing # 0's, whitespace, and punctuation. @@ -2008,7 +2008,7 @@ sub _check_datetime_field { ThrowUserError('illegal_date', { date => $date, format => 'YYYY-MM-DD' }); } - if ($time && $date_only) { + if ($time && $params->{date_only}) { ThrowUserError('illegal_date', { date => $date_time, format => 'YYYY-MM-DD' }); } -- cgit v1.2.3-24-g4f1b