summaryrefslogtreecommitdiffstats
path: root/Bugzilla/BugMail.pm
diff options
context:
space:
mode:
authorlpsolit%gmail.com <>2006-06-16 22:37:49 +0200
committerlpsolit%gmail.com <>2006-06-16 22:37:49 +0200
commitd9548f66b0f47af651f8fa62fa69cc7e65df0a60 (patch)
tree80c1c5e677910413e87e7dd828b55ed2979d6e49 /Bugzilla/BugMail.pm
parentf35e18b585fd8c2604e43d1fbdf53a36bf77e804 (diff)
downloadbugzilla-d9548f66b0f47af651f8fa62fa69cc7e65df0a60.tar.gz
bugzilla-d9548f66b0f47af651f8fa62fa69cc7e65df0a60.tar.xz
Bug 328438: Eliminate @::log_columns - Patch by Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit a=myk
Diffstat (limited to 'Bugzilla/BugMail.pm')
-rw-r--r--Bugzilla/BugMail.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/BugMail.pm b/Bugzilla/BugMail.pm
index ab8ca2f6f..7bfefd628 100644
--- a/Bugzilla/BugMail.pm
+++ b/Bugzilla/BugMail.pm
@@ -131,7 +131,7 @@ sub ProcessOneBug {
}
my %values = %{$dbh->selectrow_hashref(
- 'SELECT ' . join(',', @::log_columns) . ',
+ 'SELECT ' . join(',', editable_bug_fields()) . ',
lastdiffed AS start, LOCALTIMESTAMP(0) AS end
FROM bugs WHERE bug_id = ?',
undef, $id)};