Fix SendNotificationEmail() so it appends to the existing message in the 'edit' case instead of overwriting the message passed in

This commit is contained in:
Chris Morgan
2005-12-05 04:19:14 +00:00
committed by WineHQ
parent 312ebc2b1f
commit 369b40b046
2 changed files with 2 additions and 2 deletions

View File

@@ -376,7 +376,7 @@ class Application {
break;
case "edit":
$sSubject = $this->sName." has been modified by ".$_SESSION['current']->sRealname;
$sMsg = APPDB_ROOT."appview.php?appId=".$this->iAppId."\n";
$sMsg .= APPDB_ROOT."appview.php?appId=".$this->iAppId."\n";
addmsg("Application modified.", "green");
break;
case "delete":