Rename some variables to match our current naming scheme

This commit is contained in:
Chris Morgan
2006-06-30 16:33:02 +00:00
committed by WineHQ
parent da53f65cde
commit a72f31e11a
14 changed files with 73 additions and 73 deletions

View File

@@ -65,17 +65,17 @@ if($catId != 0)
do
{
$catQuery = "SELECT appCategory.catName, appCategory.catParent ".
$sCatQuery = "SELECT appCategory.catName, appCategory.catParent ".
"FROM appCategory WHERE appCategory.catId = '?'";
$hResult = query_parameters($catQuery, $currentCatId);
$hResult = query_parameters($sCatQuery, $currentCatId);
if($hResult)
{
$row = mysql_fetch_object($hResult);
$catParent = $row->catParent;
$oRow = mysql_fetch_object($hResult);
$catParent = $oRow->catParent;
array_push($cat_array, "$currentCatId");
array_push($cat_name_array, "$row->catName");
array_push($cat_name_array, "$oRow->catName");
}
$currentCatId = $catParent;