|
@@ 417-417 (lines=1) @@
|
| 414 |
|
|
| 415 |
|
|
| 416 |
|
// check Postvars |
| 417 |
|
if(isset($_POST['public_key'])) $this->public_K = substr(strip_tags($_POST['public_key']),0,$this->chars); |
| 418 |
|
if(isset($_POST['private_key'])) $this->private_K = substr(strip_tags($_POST['private_key']),0,$this->chars); |
| 419 |
|
$this->current_try = isset($_POST['hncaptcha']) ? $this->get_try() : 0; |
| 420 |
|
if(!isset($_POST['captcharefresh'])) $this->current_try++; |
|
@@ 418-418 (lines=1) @@
|
| 415 |
|
|
| 416 |
|
// check Postvars |
| 417 |
|
if(isset($_POST['public_key'])) $this->public_K = substr(strip_tags($_POST['public_key']),0,$this->chars); |
| 418 |
|
if(isset($_POST['private_key'])) $this->private_K = substr(strip_tags($_POST['private_key']),0,$this->chars); |
| 419 |
|
$this->current_try = isset($_POST['hncaptcha']) ? $this->get_try() : 0; |
| 420 |
|
if(!isset($_POST['captcharefresh'])) $this->current_try++; |
| 421 |
|
if($this->debug) echo "\n<br>-Captcha-Debug: Check POST-vars, current try is: (".$this->current_try.")"; |