* finish task #2320.

This commit is contained in:
wangyidong
2015-08-26 14:54:54 +08:00
parent 0f79a4f998
commit b34c1f5c6c
5 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -1104,7 +1104,7 @@ class bug extends control
$mailContent = $this->parse($this->moduleName, 'sendmail');
/* Send it. */
$this->loadModel('mail')->send($toList, $productName . ':' . 'BUG #'. $bug->id . $this->lang->colon . $bug->title, $mailContent, $ccList);
$this->loadModel('mail')->send($toList, 'BUG #'. $bug->id . $this->lang->colon . $bug->title . ' - ' . $productName, $mailContent, $ccList);
if($this->mail->isError()) trigger_error(join("\n", $this->mail->getError()));
}