diff options
author | gerv%gerv.net <> | 2003-11-08 08:27:43 +0000 |
---|---|---|
committer | gerv%gerv.net <> | 2003-11-08 08:27:43 +0000 |
commit | ee4db0ae49ef6ac641fb8713784e86165586b0c4 (patch) | |
tree | 6f37eed2abac823ccc1f24d9bcf3124e743c418f /Bugzilla | |
parent | 0cd9365dbf64295ba4d2d5972b5269a81f33fa14 (diff) | |
download | bugs-ee4db0ae49ef6ac641fb8713784e86165586b0c4.tar bugs-ee4db0ae49ef6ac641fb8713784e86165586b0c4.tar.gz bugs-ee4db0ae49ef6ac641fb8713784e86165586b0c4.tar.bz2 bugs-ee4db0ae49ef6ac641fb8713784e86165586b0c4.tar.xz bugs-ee4db0ae49ef6ac641fb8713784e86165586b0c4.zip |
Bug 221160 - crash if illegal date specified in new charts date range. Patch by gerv; r=kiko, a=justdave.
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/Chart.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Chart.pm b/Bugzilla/Chart.pm index 03b5e4173..8d3d9f643 100644 --- a/Bugzilla/Chart.pm +++ b/Bugzilla/Chart.pm @@ -93,7 +93,7 @@ sub init { foreach my $date ('datefrom', 'dateto') { if ($self->{$date}) { $self->{$date} = &::str2time($self->{$date}) - || ThrowUserError("illegal_date", { date => $self->{$date}}); + || &::ThrowUserError("illegal_date", { date => $self->{$date}}); } } |