ChangeSet ID: 26347 CVSROOT: /opt/cvs-commit Module name: appdb Changes by: wineowner@winehq.org 2006/07/07 14:24:33
Modified files: . : appview.php
Log message: Chris Morgan cmorgan@alum.wpi.edu Variable is $iAppId, not $appId
Patch: http://cvs.winehq.org/patch.py?id=26347
Old revision New revision Changes Path 1.92 1.93 +1 -1 appdb/appview.php
Index: appdb/appview.php diff -u -p appdb/appview.php:1.92 appdb/appview.php:1.93 --- appdb/appview.php:1.92 7 Jul 2006 19:24:33 -0000 +++ appdb/appview.php 7 Jul 2006 19:24:33 -0000 @@ -56,7 +56,7 @@ function display_catpath($catId, $appId, */ function display_bundle($iAppId) { - $oApp = new Application($appId); + $oApp = new Application($iAppId); $hResult = query_parameters("SELECT appFamily.appId, appName, description FROM appBundle, appFamily ". "WHERE appFamily.queued='false' AND bundleId = '?' AND appBundle.appId = appFamily.appId", $iAppId);