ChangeSet ID: 23642 CVSROOT: /opt/cvs-commit Module name: appdb Changes by: wineowner(a)winehq.org 2006/03/19 12:06:18 Modified files: include : version.php Log message: Chris Morgan <cmorgan(a)alum.wpi.edu> Print application names correctly when versions are deleted. $this->appId should have been $this->iAppId. Patch: http://cvs.winehq.org/patch.py?id=23642 Old revision New revision Changes Path 1.49 1.50 +1 -1 appdb/include/version.php Index: appdb/include/version.php diff -u -p appdb/include/version.php:1.49 appdb/include/version.php:1.50 --- appdb/include/version.php:1.49 19 Mar 2006 18: 6:18 -0000 +++ appdb/include/version.php 19 Mar 2006 18: 6:18 -0000 @@ -416,7 +416,7 @@ class Version { { if($this->iSubmitterId) { - $oApp = new Application($this->appId); + $oApp = new Application($this->iAppId); $oSubmitter = new User($this->iSubmitterId); switch($sAction) {