summaryrefslogtreecommitdiff
path: root/includes/lib/account.php
diff options
context:
space:
mode:
authorBernhard Froehlich <bernhard@cacert.org>2012-03-18 20:18:25 +0100
committerBernhard Froehlich <bernhard@cacert.org>2012-03-18 20:18:25 +0100
commit65f0dfcee2d36c8bd993fc4bf46a8aedf9e81d56 (patch)
tree0328acb52d43ba9cbae704548ba911f5d87e5497 /includes/lib/account.php
parent18d7f2508dab95f1524b56132006c0e704d3ae92 (diff)
downloadcacert-devel-65f0dfcee2d36c8bd993fc4bf46a8aedf9e81d56.tar.gz
cacert-devel-65f0dfcee2d36c8bd993fc4bf46a8aedf9e81d56.tar.xz
cacert-devel-65f0dfcee2d36c8bd993fc4bf46a8aedf9e81d56.zip
Code proposal to sync assurer flag
Diffstat (limited to 'includes/lib/account.php')
-rw-r--r--includes/lib/account.php10
1 files changed, 6 insertions, 4 deletions
diff --git a/includes/lib/account.php b/includes/lib/account.php
index f7a24fa..c7697ce 100644
--- a/includes/lib/account.php
+++ b/includes/lib/account.php
@@ -19,6 +19,8 @@
function fix_assurer_flag($userID)
{
+ // If requirements for assurers are modified see also scripts/cron/updatesort.php
+
// Update Assurer-Flag on users table if 100 points.
// Should the number of points be SUM(points) or SUM(awarded)?
$query = mysql_query('UPDATE `users` AS `u` SET `assurer` = 1 WHERE '.
@@ -29,11 +31,11 @@ function fix_assurer_flag($userID)
'(SELECT SUM(`points`) FROM `notary` AS `n` WHERE `n`.`to` = `u`.`id` '.
'AND (`n`.`expire` > now() OR `n`.`expire` IS NULL)) >= 100');
// Challenge has been passed and non-expired points >= 100
-
+
if (!$query) {
return false;
}
-
+
// Reset flag if requirements are not met
$query = mysql_query('UPDATE `users` AS `u` SET `assurer` = 0 WHERE '.
'`u`.`id` = \''.(int)intval($userID).'\' AND '.
@@ -42,10 +44,10 @@ function fix_assurer_flag($userID)
'AND `cp`.`user_id` = `u`.`id`) OR '.
'(SELECT SUM(`points`) FROM `notary` AS `n` WHERE `n`.`to` = `u`.`id` '.
'AND (`n`.`expire` > now() OR `n`.`expire` IS NULL)) < 100)');
-
+
if (!$query) {
return false;
}
-
+
return true;
} \ No newline at end of file