Version Description
- Fix: Strict Standards warnings on some server setups.
Download this release
Release Info
| Developer | dfactory |
| Plugin | |
| Version | 1.0.8 |
| Comparing to | |
| See all releases | |
Code changes from version 1.0.7 to 1.0.8
- readme.txt +6 -3
- wp-math-captcha.php +3 -3
readme.txt
CHANGED
|
@@ -4,7 +4,7 @@ Donate link: http://www.dfactory.eu/
|
|
| 4 |
Tags: antispam, capcha, captcha, captha, catcha, comment, comments, spam, security, login, lost password, math captcha, registration, cf7, contact, contact forms, form, contact form 7, bbpress
|
| 5 |
Requires at least: 3.3
|
| 6 |
Tested up to: 3.6.1
|
| 7 |
-
Stable tag: 1.0.
|
| 8 |
License: MIT License
|
| 9 |
License URI: http://opensource.org/licenses/MIT
|
| 10 |
|
|
@@ -54,6 +54,9 @@ No questions yet.
|
|
| 54 |
|
| 55 |
== Changelog ==
|
| 56 |
|
|
|
|
|
|
|
|
|
|
| 57 |
= 1.0.7 =
|
| 58 |
* New: Italian translation, thanks to Alessandro Fiorotto
|
| 59 |
|
|
@@ -85,5 +88,5 @@ No questions yet.
|
|
| 85 |
|
| 86 |
== Upgrade Notice ==
|
| 87 |
|
| 88 |
-
= 1.0.
|
| 89 |
-
*
|
| 4 |
Tags: antispam, capcha, captcha, captha, catcha, comment, comments, spam, security, login, lost password, math captcha, registration, cf7, contact, contact forms, form, contact form 7, bbpress
|
| 5 |
Requires at least: 3.3
|
| 6 |
Tested up to: 3.6.1
|
| 7 |
+
Stable tag: 1.0.8
|
| 8 |
License: MIT License
|
| 9 |
License URI: http://opensource.org/licenses/MIT
|
| 10 |
|
| 54 |
|
| 55 |
== Changelog ==
|
| 56 |
|
| 57 |
+
= 1.0.8 =
|
| 58 |
+
* Fix: Strict Standards warnings on some server setups.
|
| 59 |
+
|
| 60 |
= 1.0.7 =
|
| 61 |
* New: Italian translation, thanks to Alessandro Fiorotto
|
| 62 |
|
| 88 |
|
| 89 |
== Upgrade Notice ==
|
| 90 |
|
| 91 |
+
= 1.0.8 =
|
| 92 |
+
* Fix: Strict Standards warnings on some server setups.
|
wp-math-captcha.php
CHANGED
|
@@ -2,7 +2,7 @@
|
|
| 2 |
/*
|
| 3 |
Plugin Name: Math Captcha
|
| 4 |
Description: Math Captcha is a <strong>100% effective CAPTCHA for WordPress</strong> that integrates into login, registration, comments, Contact Form 7 and bbPress.
|
| 5 |
-
Version: 1.0.
|
| 6 |
Author: dFactory
|
| 7 |
Author URI: http://www.dfactory.eu/
|
| 8 |
Plugin URI: http://www.dfactory.eu/plugins/math-captcha/
|
|
@@ -46,7 +46,7 @@ class Math_Captcha
|
|
| 46 |
'time' => 300,
|
| 47 |
'deactivation_delete' => FALSE
|
| 48 |
);
|
| 49 |
-
|
| 50 |
private $choices = array();
|
| 51 |
private $enable_for = array();
|
| 52 |
private $mathematical_operations = array();
|
|
@@ -55,7 +55,7 @@ class Math_Captcha
|
|
| 55 |
private $errors;
|
| 56 |
private $session_id = '';
|
| 57 |
private $crypt_key = 'u.%ds)4;?D<gM#%fd!W2]9';
|
| 58 |
-
|
| 59 |
|
| 60 |
|
| 61 |
public function __construct()
|
| 2 |
/*
|
| 3 |
Plugin Name: Math Captcha
|
| 4 |
Description: Math Captcha is a <strong>100% effective CAPTCHA for WordPress</strong> that integrates into login, registration, comments, Contact Form 7 and bbPress.
|
| 5 |
+
Version: 1.0.8
|
| 6 |
Author: dFactory
|
| 7 |
Author URI: http://www.dfactory.eu/
|
| 8 |
Plugin URI: http://www.dfactory.eu/plugins/math-captcha/
|
| 46 |
'time' => 300,
|
| 47 |
'deactivation_delete' => FALSE
|
| 48 |
);
|
| 49 |
+
private $options = array();
|
| 50 |
private $choices = array();
|
| 51 |
private $enable_for = array();
|
| 52 |
private $mathematical_operations = array();
|
| 55 |
private $errors;
|
| 56 |
private $session_id = '';
|
| 57 |
private $crypt_key = 'u.%ds)4;?D<gM#%fd!W2]9';
|
| 58 |
+
private $err_msg = array();
|
| 59 |
|
| 60 |
|
| 61 |
public function __construct()
|
