|
From: Benjamin C. <bc...@us...> - 2001-09-08 14:34:56
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv20859
Modified Files:
bug.php
Log Message:
Fixed a bug in the change notification
Index: bug.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/bug.php,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -r1.38 -r1.39
--- bug.php 2001/09/03 17:59:11 1.38
+++ bug.php 2001/09/08 14:34:52 1.39
@@ -105,13 +105,13 @@
.' (bug_id, changed_field, old_value, new_value, created_by, created_date)'
." values ({$buginfo['bug_id']}, '$field', '$oldvalue', '$newvalue', $u, $now)");
$t->set_var(array(
- $field => stripslashes($newvalue),
- $field.'Stat' => '!'
+ $field.'_id' => stripslashes($newvalue),
+ $field.'_id_stat' => '!'
));
} else {
$t->set_var(array(
- $field => stripslashes($oldvalue),
- $field.'Stat' => ' '
+ $field.'_id' => stripslashes($oldvalue),
+ $field.'_id_stat' => ' '
));
}
}
|