Index: branches/5.1.x/core/units/helpers/captcha_helper.php =================================================================== diff -u -N -r12657 -r13086 --- branches/5.1.x/core/units/helpers/captcha_helper.php (.../captcha_helper.php) (revision 12657) +++ branches/5.1.x/core/units/helpers/captcha_helper.php (.../captcha_helper.php) (revision 13086) @@ -1,6 +1,6 @@ Application->IsAdmin() || $this->Application->RecallVar($variable_name)) { + if ($this->Application->isAdmin || $this->Application->RecallVar($variable_name)) { // when code found don't generate it 2nd time return $this->Application->RecallVar($variable_name); } @@ -150,7 +150,7 @@ */ function validateCode(&$event, $check_request = true) { - if ($this->Application->IsAdmin()) { + if ($this->Application->isAdmin) { // no captcha codes in admin return true; }