|
From: Benjamin C. <bc...@us...> - 2003-04-04 13:07:20
|
Update of /cvsroot/phpbt/phpbt
In directory sc8-pr-cvs1:/tmp/cvs-serv13347
Modified Files:
bug.php
Log Message:
Fixes bug #703946 - Priority changes are not recorded in the bug history
Index: bug.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/bug.php,v
retrieving revision 1.126
retrieving revision 1.127
diff -u -r1.126 -r1.127
--- bug.php 19 Feb 2003 14:07:19 -0000 1.126
+++ bug.php 4 Apr 2003 13:07:12 -0000 1.127
@@ -126,7 +126,7 @@
$template_ext = false/*HTML_EMAIL*/ ? 'html' : 'txt';
$template = $newbug ? "bugemail-newbug.$template_ext" : "bugemail.$template_ext";
- foreach(array('title','url') as $field) {
+ foreach(array('title','url','priority') as $field) {
if (isset($cf[$field])) {
$db->query('insert into '.TBL_BUG_HISTORY.
' (bug_id, changed_field, old_value, new_value, created_by, created_date)'.
|