summaryrefslogtreecommitdiffstats
path: root/buglist.cgi
diff options
context:
space:
mode:
authorterry%mozilla.org <>1999-09-16 02:25:26 +0200
committerterry%mozilla.org <>1999-09-16 02:25:26 +0200
commit1008fc9fa512222979ae23e02e7db30c3e04d592 (patch)
tree60737cf5fccb9580fa83e14422bf2cb60d522ace /buglist.cgi
parent20269fbbc7fe9226f2ed8a4c0470d7c84b795591 (diff)
downloadbugzilla-1008fc9fa512222979ae23e02e7db30c3e04d592.tar.gz
bugzilla-1008fc9fa512222979ae23e02e7db30c3e04d592.tar.xz
Patch by daa@rmi.net (Dave Avery) -- newer alphas of MySQL won't let
use "when" as a column name, so let's change our usage while it's still easy to do so.
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 07e05900f..24584e6fe 100755
--- a/buglist.cgi
+++ b/buglist.cgi
@@ -392,13 +392,13 @@ if (defined $ref && 0 < @$ref) {
}
$query .= "and bugs_activity.bug_id = bugs.bug_id and (" .
join(' or ', @list) . ") ";
- $query .= "and bugs_activity.when >= " .
+ $query .= "and bugs_activity.bug_when >= " .
SqlifyDate($::FORM{'chfieldfrom'}) . "\n";
my $to = $::FORM{'chfieldto'};
if (defined $to) {
$to = trim($to);
if ($to ne "" && $to !~ /^now$/i) {
- $query .= "and bugs_activity.when <= " . SqlifyDate($to) . "\n";
+ $query .= "and bugs_activity.bug_when <= " . SqlifyDate($to) . "\n";
}
}
my $value = $::FORM{'chfieldvalue'};