summaryrefslogtreecommitdiffstats
path: root/buglist.cgi
diff options
context:
space:
mode:
Diffstat (limited to 'buglist.cgi')
-rwxr-xr-xbuglist.cgi4
1 files changed, 2 insertions, 2 deletions
diff --git a/buglist.cgi b/buglist.cgi
index 49ddb8e44..8ca7d293e 100755
--- a/buglist.cgi
+++ b/buglist.cgi
@@ -312,7 +312,7 @@ sub GenerateSQL {
if (defined $value) {
$value = trim($value);
if ($value ne "") {
- push(@wherepart, "actcheck.newvalue = " .
+ push(@wherepart, "actcheck.added = " .
SqlQuote($value))
}
}
@@ -558,7 +558,7 @@ sub GenerateSQL {
push(@supptables, "fielddefs $ftable");
push(@wherepart, "$table.bug_id = bugs.bug_id");
push(@wherepart, "$table.fieldid = $ftable.fieldid");
- $term = "($ftable.name = '$f' AND $table.newvalue = $q)";
+ $term = "($ftable.name = '$f' AND $table.added = $q)";
},
",changedby" => sub {
my $table = "act_$chartid";