Changeset 337148
- Timestamp:
- 01/25/2011 06:15:48 PM (15 years ago)
- Location:
- anti-captcha/trunk
- Files:
-
- 2 edited
-
anti-captcha.php (modified) (4 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
anti-captcha/trunk/anti-captcha.php
r261410 r337148 4 4 Plugin URI: http://blog.fili.nl/articles/wordpress-plugin-anti-captcha/ 5 5 Description: Anti-Captcha is a transparent captcha solution which does not require any end-user interaction 6 Version: 201 007086 Version: 20110125 7 7 Author: Fili Wiese 8 8 Author URI: http://www.fili.nl/ … … 11 11 define("ANTI_CAPTCHA_ERROR", __("<b>Error submitting form!</b><br />Please make sure both javascript and cookies are enabled in your browser.<br />Use the back button to try again...<br /><br /><i>(Note: if this still doesn't help, then refreshing your cache might)</i>", 'anti_captcha')); 12 12 13 //add_action('login_head', 'anti_captcha_head'); 14 //add_action('wp_authenticate', 'anti_captcha_process_login'); 13 15 add_action('wp_head', 'anti_captcha_head'); 14 add_action('login_head', 'anti_captcha_head');15 add_filter('preprocess_comment', 'anti_captcha_process_comment');16 add_action('wp_authenticate', 'anti_captcha_process_login');17 16 add_action('register_post','anti_captcha_process_registration',10,3); 18 17 add_action('lostpassword_post','anti_captcha_process_lostpassword',10,3); 18 add_filter('preprocess_comment', 'anti_captcha_process_comment'); 19 19 20 20 function anti_captcha_head() … … 47 47 } 48 48 49 /* 49 50 function anti_captcha_process_login() 50 51 { … … 55 56 } 56 57 } 58 */ 57 59 58 60 function anti_captcha_process_registration($login,$email,$errors) -
anti-captcha/trunk/readme.txt
r261410 r337148 4 4 Tags: spam, anti-spam, anti-captcha, captcha, comments, register, login, lost, password, bot, bots, attack, protect 5 5 Requires at least: 2.8.4 6 Tested up to: 3.0 7 Stable tag: 201 007086 Tested up to: 3.0.4 7 Stable tag: 20110125 8 8 9 9 Anti-Captcha is a transparent captcha solution which does not require any end-user interaction … … 17 17 18 18 * Posting comments 19 * Authenticating20 19 * Registering for a new account 21 20 * Requesting a lost password … … 58 57 == Changelog == 59 58 59 = 20110125 = 60 * Tested on WordPress version 3.0.4 61 * Removed anti-captcha from login procedure 62 60 63 = 20100708 = 61 64 * Tested on WordPress version 3.0
Note: See TracChangeset
for help on using the changeset viewer.