]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Fix for bug 178801: Missing &:: caused function call to fail, resulting in server...
authormyk%mozilla.org <>
Thu, 7 Nov 2002 14:31:51 +0000 (14:31 +0000)
committermyk%mozilla.org <>
Thu, 7 Nov 2002 14:31:51 +0000 (14:31 +0000)
r=justdave
a=justdave

Bugzilla/Search.pm

index b6e554be8811100855bdcc8c8c74dc4a97914e55..a7c32930798a7e382b7e91f2a5fdb22399f94b82 100644 (file)
@@ -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);
 }