diff options
author | root <root@cacert1.it-sls.de> | 2012-03-28 08:45:02 +0200 |
---|---|---|
committer | root <root@cacert1.it-sls.de> | 2012-03-28 08:45:02 +0200 |
commit | b5f8cc47f7d807d4c54b626ceb3cdf59d6fac314 (patch) | |
tree | 7c1b30331829a042c3504ff4b46d9b4583c3ed17 /includes | |
parent | 55240a73624abefbd0b44c47f4282ad3668edae0 (diff) | |
parent | 0032a1cf511f7ec5a12fc26204cada9aa733bf16 (diff) | |
download | cacert-devel-b5f8cc47f7d807d4c54b626ceb3cdf59d6fac314.tar.gz cacert-devel-b5f8cc47f7d807d4c54b626ceb3cdf59d6fac314.tar.xz cacert-devel-b5f8cc47f7d807d4c54b626ceb3cdf59d6fac314.zip |
Merge branch 'release' of ssh://dirk@git-cacert.it-sls.de/var/cache/git/cacert-devel into bug-1023
Diffstat (limited to 'includes')
-rw-r--r-- | includes/lib/account.php | 10 |
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 |