From: lpsolit%gmail.com <> Date: Thu, 28 Feb 2008 18:26:32 +0000 (+0000) Subject: Fixing bug 418068 for real. The previous patch was broken. Patch by Jesse Clark ... X-Git-Tag: bugzilla-3.1.3~296 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dc850794210056ff806b21c57149be7c7662be8c;p=thirdparty%2Fbugzilla.git Fixing bug 418068 for real. The previous patch was broken. Patch by Jesse Clark r=mkanat --- diff --git a/Bugzilla/Search.pm b/Bugzilla/Search.pm index 7d2d20e1d9..252813a06d 100644 --- a/Bugzilla/Search.pm +++ b/Bugzilla/Search.pm @@ -1226,15 +1226,15 @@ 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/) ? '<' : '>'; my $table = "longdescs_$$chartid"; push(@$supptables, "LEFT JOIN longdescs AS $table " . "ON $table.bug_id = bugs.bug_id " . - "AND $table.bug_when $operator " . - $dbh->quote(SqlifyDate($$v)) ); + "AND $table.bug_when $operator " . + $dbh->quote(SqlifyDate($$v)) ); $$term = "($table.bug_when IS NOT NULL)"; } @@ -1423,16 +1423,16 @@ 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/) ? '<' : '>'; my $table = "longdescs_$$chartid"; push(@$supptables, "LEFT JOIN longdescs AS $table " . "ON $table.bug_id = bugs.bug_id " . - "AND $table.work_time <> 0" . - "AND $table.bug_when $operator " . - $dbh->quote(SqlifyDate($$v)) ); + "AND $table.work_time <> 0" . + "AND $table.bug_when $operator " . + $dbh->quote(SqlifyDate($$v)) ); $$term = "($table.bug_when IS NOT NULL)"; }