Improve mail messages on version description changes and include the note description when sending a

node added email
This commit is contained in:
Chris Morgan
2005-05-27 23:53:26 +00:00
committed by WineHQ
parent 237abd4329
commit a80a97db33
2 changed files with 4 additions and 3 deletions

View File

@@ -54,7 +54,8 @@ class Note {
if(query_appdb("INSERT INTO appNotes $sFields VALUES $sValues", "Error while creating a new note."))
{
$this->note(mysql_insert_id());
$this->mailMaintainers("add");
$sWhatChanged = "Description is:\n".$sDescription.".\n\n";
$this->mailMaintainers("add", $sWhatChanged);
return true;
}
else
@@ -123,7 +124,7 @@ class Note {
{
case "add":
$sSubject = "Note ".$this->sTitle." for ".lookup_app_name($this->iAppId)." ".lookup_version_name($this->iVersionId)." added by ".$_SESSION['current']->sRealname;
$sMsg = APPDB_ROOT."appview.php?versionId=".$this->iVersionId."\n";
$sMsg .= APPDB_ROOT."appview.php?versionId=".$this->iVersionId."\n";
addmsg("The note was successfully added into the database.", "green");
break;
case "edit":

View File

@@ -162,7 +162,7 @@ class Version {
$sUpdate = compile_update_string(array('versionName' => $sName));
if (!query_appdb("UPDATE appVersion SET ".$sUpdate." WHERE versionId = ".$this->iVersionId))
return false;
$sWhatChanged .= "Name was changed from ".$this->sName." to ".$sName.".\n\n";
$sWhatChanged .= "Name was changed from:\n\t'".$this->sName."'\nto:\n\t'".$sName."'\n\n";
$this->sName = $sName;
}