|
From: Benjamin C. <bc...@us...> - 2001-12-07 14:01:29
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv1440
Modified Files:
bug.php
Log Message:
Need $STRING for the charset variable in mail() -- Noticed by Brent
Index: bug.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/bug.php,v
retrieving revision 1.64
retrieving revision 1.65
diff -u -r1.64 -r1.65
--- bug.php 2001/12/05 04:21:19 1.64
+++ bug.php 2001/12/07 14:01:26 1.65
@@ -80,7 +80,7 @@
///
/// Send the email about changes to the bug and log the changes in the DB
function do_changedfields($userid, $buginfo, $cf, $comments) {
- global $q, $t, $u, $select, $now;
+ global $q, $t, $u, $select, $now, $STRING;
$t->set_file('emailout','bugemail.txt');
$t->set_block('emailout','commentblock', 'cblock');
|