Plugin Directory

Changeset 337148


Ignore:
Timestamp:
01/25/2011 06:15:48 PM (15 years ago)
Author:
filiw
Message:

Removed anti-captcha from login procedure

Location:
anti-captcha/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • anti-captcha/trunk/anti-captcha.php

    r261410 r337148  
    44Plugin URI: http://blog.fili.nl/articles/wordpress-plugin-anti-captcha/
    55Description: Anti-Captcha is a transparent captcha solution which does not require any end-user interaction
    6 Version: 20100708
     6Version: 20110125
    77Author: Fili Wiese
    88Author URI: http://www.fili.nl/
     
    1111define("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'));
    1212
     13//add_action('login_head', 'anti_captcha_head');
     14//add_action('wp_authenticate', 'anti_captcha_process_login');
    1315add_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');
    1716add_action('register_post','anti_captcha_process_registration',10,3);
    1817add_action('lostpassword_post','anti_captcha_process_lostpassword',10,3);
     18add_filter('preprocess_comment', 'anti_captcha_process_comment');
    1919
    2020function anti_captcha_head()
     
    4747}
    4848
     49/*
    4950function anti_captcha_process_login()
    5051{
     
    5556    }
    5657}
     58*/
    5759
    5860function anti_captcha_process_registration($login,$email,$errors)
  • anti-captcha/trunk/readme.txt

    r261410 r337148  
    44Tags: spam, anti-spam, anti-captcha, captcha, comments, register, login, lost, password, bot, bots, attack, protect
    55Requires at least: 2.8.4
    6 Tested up to: 3.0
    7 Stable tag: 20100708
     6Tested up to: 3.0.4
     7Stable tag: 20110125
    88
    99Anti-Captcha is a transparent captcha solution which does not require any end-user interaction
     
    1717
    1818* Posting comments
    19 * Authenticating
    2019* Registering for a new account
    2120* Requesting a lost password
     
    5857== Changelog ==
    5958
     59= 20110125 =
     60* Tested on WordPress version 3.0.4
     61* Removed anti-captcha from login procedure
     62
    6063= 20100708 =
    6164* Tested on WordPress version 3.0
Note: See TracChangeset for help on using the changeset viewer.