Implemented the user friendly screenshot submitting feature

This commit is contained in:
Jonathan Ernst
2004-12-18 06:06:46 +00:00
committed by WineHQ
parent c89531e4c1
commit a8ba02e76d
7 changed files with 485 additions and 156 deletions

View File

@@ -242,6 +242,15 @@ function getQueuedAppCount()
return $ob->queued_apps;
}
/* get the number of applications in the appQueue table */
function getQueuedAppDataCount()
{
$qstring = "SELECT count(*) as queued_appdata FROM appDataQueue";
$result = mysql_query($qstring);
$ob = mysql_fetch_object($result);
return $ob->queued_appdata;
}
/* get the number of applications in the appQueue table */
function getQueuedMaintainerCount()
{