diff options
author | INOPIAE <inopiae@cacert.org> | 2015-07-22 21:37:16 +0200 |
---|---|---|
committer | INOPIAE <inopiae@cacert.org> | 2015-07-22 21:37:16 +0200 |
commit | 5a03b6f6f2eb7ad3e2438035f9e70f1ab4277016 (patch) | |
tree | 8c614869ba27d7e1687e0033fbe9400fb0b0aa6e | |
parent | e3611f709b9ab00a206120afbb421b5f3051be63 (diff) | |
download | cacert-mgr-5a03b6f6f2eb7ad3e2438035f9e70f1ab4277016.tar.gz cacert-mgr-5a03b6f6f2eb7ad3e2438035f9e70f1ab4277016.tar.xz cacert-mgr-5a03b6f6f2eb7ad3e2438035f9e70f1ab4277016.zip |
bug 1391: removed insert of administrative increase entry for normal assurance
-rw-r--r-- | manager/application/models/User.php | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/manager/application/models/User.php b/manager/application/models/User.php index 1e785f1..3085123 100644 --- a/manager/application/models/User.php +++ b/manager/application/models/User.php @@ -297,18 +297,6 @@ class Default_Model_User { $this->db->insert('notary', $assurance); $assuree->points += $rounddown; $assuree->fixAssurerFlag(); - - if ($this->getPoints() < 150) { - $addpoints = 0; - if ($this->getPoints() < 149 && $this->getPoints() >= 100) { - $addpoints = 2; - } elseif ($this->getPoints() === 149) { - $addpoints = 1; - } - - $this->adminIncrease($addpoints, $location, $date); - } - return $rounddown; } |