objectManager: Get rid of setIsQueue/Rejected

This commit is contained in:
Alexander Nicolaysen Sørnes
2008-01-02 00:28:32 +01:00
committed by Chris Morgan
parent 6508c7f430
commit 61d2291e3b
3 changed files with 20 additions and 30 deletions

View File

@@ -234,6 +234,15 @@ function make_maintainer_rating_list($varname, $cvalue)
return $sTxt;
}
/* Get the element with specified key from an array if it is defined */
function getInput($sVar, $aInput)
{
if(array_key_exists($sVar, $aInput))
return $aInput[$sVar];
return null;
}
/* Get the number of users in the database */
function getNumberOfComments()
{