Replaced mysql_query() with query_appdb()

This commit is contained in:
Jonathan Ernst
2005-01-10 22:24:15 +00:00
committed by WineHQ
parent 3d587b2f9c
commit dfec5cb9b0
11 changed files with 23 additions and 30 deletions

View File

@@ -29,7 +29,7 @@ function display_catpath($catId, $appId, $versionId = '')
/* display the SUB apps that belong to this app */
function display_bundle($appId)
{
$result = mysql_query("SELECT appFamily.appId, appName, description FROM appBundle, appFamily ".
$result = query_appdb("SELECT appFamily.appId, appName, description FROM appBundle, appFamily ".
"WHERE bundleId = $appId AND appBundle.appId = appFamily.appId");
if(!$result || mysql_num_rows($result) == 0)
{