diff options
| author | arf20 <aruizfernandez05@gmail.com> | 2026-07-01 20:21:58 +0200 |
|---|---|---|
| committer | arf20 <aruizfernandez05@gmail.com> | 2026-07-01 20:21:58 +0200 |
| commit | b5711367898e2fc51abb1cccd77fbbf8a7ba7f31 (patch) | |
| tree | 1031e37e293cf06a2fe1ab3d3f24fe4fb9c0cc27 /mlmmj.php | |
| parent | b7ed54f91c373aef452b3540c8cd352d11305c30 (diff) | |
| download | arfnet2-lists-b5711367898e2fc51abb1cccd77fbbf8a7ba7f31.tar.gz arfnet2-lists-b5711367898e2fc51abb1cccd77fbbf8a7ba7f31.zip | |
Fix captcha
Diffstat (limited to 'mlmmj.php')
| -rw-r--r-- | mlmmj.php | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -56,7 +56,7 @@ class mlmmj !isset($_POST["job"]) && !isset($_POST["redirect_success"]) && !isset($_POST["redirect_failure"]) && - !isset($_POST["random"])) && + !isset($_POST["random"]) && !isset($_POST["captcha"])) { $this->errors = TRUE; @@ -75,7 +75,7 @@ class mlmmj // Check the random string to be valid and return an error message // otherwise. - if (!$captchas->validate ($random_string)) + if (!$captchas->validate ($_POST["random"])) { $this->error( "The session key (random) does not exist, please go back and reload form.<br/>" @@ -85,7 +85,7 @@ class mlmmj } // Check, that the right CAPTCHA password has been entered and // return an error message otherwise. - elseif (!$captchas->verify ($password)) + elseif (!$captchas->verify ($_POST["captcha"])) { $this->error("You entered the wrong password. Aren't you human? Please use back button and reload."; } |
