Fix maintainer::getSubmitterEmails() to append addresses

This commit is contained in:
Alexander Nicolaysen Sørnes
2008-06-02 16:35:04 +02:00
committed by Chris Morgan
parent 4f792a28ba
commit 166d6fdf41

View File

@@ -409,7 +409,7 @@ class maintainer
{ {
if($i) if($i)
$sRecipients .= ' '; $sRecipients .= ' ';
$sRecipients = $oRow->email; $sRecipients .= $oRow->email;
} }
return $sRecipients; return $sRecipients;
} }