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

@@ -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;
}