Commit dc850794 authored by lpsolit%gmail.com's avatar lpsolit%gmail.com

Fixing bug 418068 for real. The previous patch was broken. Patch by Jesse Clark…

Fixing bug 418068 for real. The previous patch was broken. Patch by Jesse Clark <jjclark1982@gmail.com> r=mkanat
parent 8536f7e3
......@@ -1226,7 +1226,7 @@ sub _long_desc_changedbefore_after {
my $self = shift;
my %func_args = @_;
my ($chartid, $t, $v, $supptables, $term) =
@func_args{qw(chartid v supptables term)};
@func_args{qw(chartid t v supptables term)};
my $dbh = Bugzilla->dbh;
my $operator = ($$t =~ /before/) ? '<' : '>';
......@@ -1423,7 +1423,7 @@ sub _work_time_changedbefore_after {
my $self = shift;
my %func_args = @_;
my ($chartid, $t, $v, $supptables, $term) =
@func_args{qw(chartid v supptables term)};
@func_args{qw(chartid t v supptables term)};
my $dbh = Bugzilla->dbh;
my $operator = ($$t =~ /before/) ? '<' : '>';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment