Add the ability for admins to move a version from one application to another.

This is useful when there are duplicate applications and you want to move
versions prior to removing the duplicate app.
This commit is contained in:
Chris Morgan
2005-06-05 21:26:07 +00:00
committed by WineHQ
parent 55971e8f8b
commit 81d3db95b8
3 changed files with 93 additions and 1 deletions

View File

@@ -215,7 +215,7 @@ class Version {
return false;
$oAppBefore = new Application($this->iAppId);
$oAppAfter = new Application($iAppId);
$sWhatChanged .= "Application was changed from ".$oAppBefore->sName." to ".$oAppAfter->sName.".\n\n";
$sWhatChanged .= "Version was moved from application ".$oAppBefore->sName." to application ".$oAppAfter->sName.".\n\n";
$this->iAppId = $iAppId;
}
if($sWhatChanged)