summaryrefslogtreecommitdiffstats
path: root/Bugzilla/BugMail.pm
diff options
context:
space:
mode:
authorlpsolit%gmail.com <>2007-10-18 05:48:59 +0200
committerlpsolit%gmail.com <>2007-10-18 05:48:59 +0200
commitc6ede85fc67cefea141519c2b767cdcc600995ee (patch)
tree26214b20c014330d0898a82603c30e54a480abd4 /Bugzilla/BugMail.pm
parentcc932cda1c16d3e4963111094189977f000f4b6a (diff)
downloadbugzilla-c6ede85fc67cefea141519c2b767cdcc600995ee.tar.gz
bugzilla-c6ede85fc67cefea141519c2b767cdcc600995ee.tar.xz
Bug 398990: process_bug.cgi shouldn't check the 'reporter' field as this field is not editable - Patch by fedor ezeev <fe@alterplast.ru> r/a=LpSolit
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 e771a9876..1f10714e8 100644
--- a/Bugzilla/BugMail.pm
+++ b/Bugzilla/BugMail.pm
@@ -112,7 +112,7 @@ sub Send {
}
my %values = %{$dbh->selectrow_hashref(
- 'SELECT ' . join(',', editable_bug_fields()) . ',
+ 'SELECT ' . join(',', editable_bug_fields()) . ', reporter,
lastdiffed AS start, LOCALTIMESTAMP(0) AS end
FROM bugs WHERE bug_id = ?',
undef, $id)};