|
From: Benjamin C. <bc...@us...> - 2002-05-05 16:24:49
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv14277
Modified Files:
bug.php
Log Message:
Fixes bug #550178 - Problems with CC addresses
Index: bug.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/bug.php,v
retrieving revision 1.99
retrieving revision 1.100
diff -u -r1.99 -r1.100
--- bug.php 26 Apr 2002 12:02:13 -0000 1.99
+++ bug.php 5 May 2002 16:24:46 -0000 1.100
@@ -239,7 +239,7 @@
// Collect the CCs
if ($ccs = $db->getCol(sprintf($QUERY['bug-cc-list'], $buginfo['bug_id']))) {
- array_push($maillist, $ccs);
+ array_merge($maillist, $ccs);
}
// Later add a watcher (such as QA person) check here
|