diff options
Diffstat (limited to 'Bugzilla/Search.pm')
-rw-r--r-- | Bugzilla/Search.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Search.pm b/Bugzilla/Search.pm index b6e554be8..a7c329307 100644 --- a/Bugzilla/Search.pm +++ b/Bugzilla/Search.pm @@ -968,7 +968,7 @@ sub SqlifyDate { my $date = str2time($str); if (!defined($date)) { $::vars->{'date'} = $str; - ThrowUserError("illegal_date"); + &::ThrowUserError("illegal_date"); } return time2str("%Y-%m-%d %H:%M:%S", $date); } |