Fix testData::unQueue() emails by passing 'add' to ::mailSubmitter(). Previously 'unQueue'

was passed but testData::mailSubmitter() doesn't recognize this so likely the response email
had an empty subject
This commit is contained in:
Alexander Nicolaysen Sørnes
2007-04-01 16:49:28 +00:00
committed by WineHQ
parent cecc4bf6c0
commit fa442e0c8e

View File

@@ -195,7 +195,7 @@ class testData{
{
$this->sQueued = 'false';
// we send an e-mail to interested people
$this->mailSubmitter("unQueue");
$this->mailSubmitter("add");
$this->SendNotificationMail();
}
}