appId, $row->versionId, $row->superMaintainer); $c++; } return $retval; } /* * 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; $query = "SELECT userId FROM ". "appMaintainers WHERE versionId = '$versionId';"; $result = query_appdb($query); $c = 0; while($row = mysql_fetch_object($result)) { $retval[$c] = $row->userId; $c++; } return $retval; } /* * get the userIds of super maintainers for this appId */ function getSuperMaintainersUserIdsFromAppId($appId) { $query = "SELECT userId FROM ". "appMaintainers WHERE appId = '$appId' " . "AND superMaintainer = '1';"; $result = query_appdb($query); $retval = array(); $c = 0; while($row = mysql_fetch_object($result)) { $retval[$c] = $row->userId; $c++; } return $retval; } ?>