From d209c569797b762a988f152f84b892569bc11793 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20Nicolaysen=20S=C3=B8rnes?= Date: Sat, 26 May 2007 01:39:46 +0000 Subject: [PATCH] Include bug id in more buglink mails --- include/bugs.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/include/bugs.php b/include/bugs.php index 17e4738..bc74fce 100644 --- a/include/bugs.php +++ b/include/bugs.php @@ -197,11 +197,13 @@ class Bug { if(!$bRejected) { $sSubject = "Submitted Bug Link accepted"; - $sMsg = "The Bug Link you submitted for ".$sAppName." has been accepted."; + $sMsg = "The bug link you submitted between Bug ".$this->iBug_id." and ". + $sAppName." has been accepted."; } else { $sSubject = "Submitted Bug Link rejected"; - $sMsg = "The Bug Link you submitted for ".$sAppName." has been rejected."; + $sMsg = "The bug link you submitted between Bug ".$this->iBug_id." and ". + $sAppName." has been deleted."; } $sMsg .= $aClean['sReplyText']."\n"; $sMsg .= "We appreciate your help in making the Application Database better for all users.";