ChangeSet ID: 22366 CVSROOT: /opt/cvs-commit Module name: appdb Changes by: wineowner@winehq.org 2006/01/17 22:18:56
Modified files: . : appsubmit.php
Log message: Tony Lambregts tony.lambregts@gmail.com Fix appsubmit to display versions for resubmission by calling the correct function
Patch: http://cvs.winehq.org/patch.py?id=22366
Old revision New revision Changes Path 1.36 1.37 +2 -2 appdb/appsubmit.php
Index: appdb/appsubmit.php diff -u -p appdb/appsubmit.php:1.36 appdb/appsubmit.php:1.37 --- appdb/appsubmit.php:1.36 18 Jan 2006 4:18:56 -0000 +++ appdb/appsubmit.php 18 Jan 2006 4:18:56 -0000 @@ -303,9 +303,9 @@ if ($_REQUEST['sub']) { if(is_numeric($oVersion->iVersionId)) { - echo html_frame_start("Potential duplicate versions in the database","90%","",0); $oAppForVersion = new Application($oVersion->iAppId); - display_versions($oAppForVersion->iAppId, $oAppForVersion->aVersionsIds); + echo html_frame_start("Potential duplicate versions in the database for application: ".$oAppForVersion->sName,"90%","",0); + display_approved_versions($oAppForVersion->aVersionsIds); echo html_frame_end(" ");
//help