From 9ea749ceb964c8660ffbd79aac180372a007ee60 Mon Sep 17 00:00:00 2001 From: james Date: Wed, 5 Dec 2007 04:21:57 +0000 Subject: [PATCH] lol fix the ysf affiliation stats since dave moved the committee members over to the new system --- admin/ysfstats.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin/ysfstats.php b/admin/ysfstats.php index c5ca6e5b..fd6b907c 100644 --- a/admin/ysfstats.php +++ b/admin/ysfstats.php @@ -232,7 +232,7 @@ $stats["proj910"]=$projs["910"]?$projs["910"]:0; $stats["proj11up"]=$projs["11up"]?$projs["11up"]:0; - $q=mysql_query("SELECT COUNT(id) AS num FROM committees_members WHERE deleted='N'"); + $q=mysql_query("SELECT COUNT(id) AS num FROM users WHERE types LIKE '%committee%' AND deleted='no'"); $r=mysql_fetch_object($q); $numcommittee=$r->num; echo i18n("Committee Members: %1 (note: this is CURRENT number of active committee members as of right now! There is no way to extract committee member numbers from previous years)",array($r->num));