Fix AppDB stats page

This commit is contained in:
Alexander Nicolaysen Sørnes
2008-01-23 15:17:33 +01:00
committed by Chris Morgan
parent 70c992a379
commit 663894bed4
2 changed files with 7 additions and 7 deletions

View File

@@ -514,7 +514,7 @@ class maintainer
/* see how many unique maintainers we actually have */
function getNumberOfMaintainers()
{
$hResult = query_parameters("SELECT DISTINCT userId FROM appMaintainers WHERE queued='false';");
$hResult = query_parameters("SELECT DISTINCT userId FROM appMaintainers WHERE state='accepted';");
return query_num_rows($hResult);
}