Move getMaintainersUserIds...() to version::getMaintainersUserIds() and fixup callers of this function

This commit is contained in:
Chris Morgan
2006-07-07 16:44:41 +00:00
committed by WineHQ
parent 89915be4f1
commit e56e95d63a
3 changed files with 26 additions and 27 deletions

View File

@@ -3,30 +3,6 @@
/* functions for maintainers */
/*****************************/
/*
* get the userIds of maintainers for a versionId
*/
function getMaintainersUserIdsFromAppIdVersionId($versionId)
{
$retval = array();
/* early out if the versionId isn't valid */
if($versionId == 0)
return $retval;
$sQuery = "SELECT userId FROM ".
"appMaintainers WHERE versionId = '?';";
$hResult = query_parameters($sQuery, $versionId);
$c = 0;
while($oRow = mysql_fetch_object($hResult))
{
$retval[$c] = $oRow->userId;
$c++;
}
return $retval;
}
/*
* get the userIds of super maintainers for this appId
*/