Add a message to the app/version deletion email to clarify deletions due the app/version being moved

This commit is contained in:
Tony Lambregts
2006-04-27 01:44:57 +00:00
committed by WineHQ
parent 647de96f9d
commit 42b6c87c7b

View File

@@ -208,6 +208,7 @@ if ($_REQUEST['sub'])
$oVersion->update();
/* delete the appId that is the duplicate */
$_REQUEST['replyText'] = "Your Vesion information was moved to an existing Application";
$oAppDelete = new Application($oApp->iAppId);
$oAppDelete->delete();
}
@@ -224,6 +225,7 @@ if ($_REQUEST['sub'])
$oTest->update();
// delete the Version entry
$_REQUEST['replyText'] = "Your Test results were moved to existing version";
$oVersion = new Version($_REQUEST['versionId']);
$oVersion->delete();
}