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

@@ -61,7 +61,7 @@ if($catId != 0)
{
$catQuery = "SELECT appCategory.catName, appCategory.catParent ".
"FROM appCategory WHERE appCategory.catId = '$currentCatId';";
$result = mysql_query($catQuery);
$result = query_appdb($catQuery);
if($result)
{