Fix for bug 178801: Missing &:: caused function call to fail, resulting in server error.

r=justdave
a=justdave
This commit is contained in:
myk%mozilla.org 2002-11-07 06:31:51 +00:00
Родитель 26e5aeaa8e
Коммит 677e576def
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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);
}