diff options
Diffstat (limited to 'scripts/cron')
-rwxr-xr-x | scripts/cron/refresh_stats.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/cron/refresh_stats.php b/scripts/cron/refresh_stats.php index 5cfa720..ca02f6b 100755 --- a/scripts/cron/refresh_stats.php +++ b/scripts/cron/refresh_stats.php @@ -149,7 +149,9 @@ function getDataFromLive() { )); $stats['points_issued'] = number_format(tc( - "select sum(greatest(`points`, `awarded`)) as `count` from `notary`")); + "select sum(greatest(`points`, `awarded`)) as `count` from `notary` + where `deleted` = 0 + and `method` = 'Face to Face Meeting'")); $totalusers=0; $totassurers=0; |