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

@@ -681,8 +681,8 @@ function getNumberOfQueuedTests()
$hResult = query_parameters($sQuery);
if($hResult)
{
$row = mysql_fetch_object($hResult);
return $row->num_tests;
$oRow = mysql_fetch_object($hResult);
return $oRow->num_tests;
}
return 0;
}