Plugin Directory

Changeset 705290


Ignore:
Timestamp:
04/29/2013 08:53:38 AM (13 years ago)
Author:
KeyCAPTCHA
Message:

fixed issue with CF7 3.4

Location:
keycaptcha/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • keycaptcha/trunk/kc-gettime.php

    r553673 r705290  
    22/*
    33KeyCAPTCHA plugin for WordPress
    4 Version     2.4.0
     4Version     2.4.1
    55Author      Mersane, Ltd
    66Author URI  https://www.keycaptcha.com
     
    88*/
    99/*
    10 Copyright (C) 2011 Mersane, Ltd (www.keycaptcha.com). All rights reserved.
     10Copyright (C) 2011-2013 Mersane, Ltd (www.keycaptcha.com). All rights reserved.
    1111
    1212This program is free software; you can redistribute it and/or
  • keycaptcha/trunk/keycaptcha.php

    r553673 r705290  
    44Plugin URI: https://www.keycaptcha.com
    55Description: Adds KeyCAPTCHA anti-spam solution to WordPress on the comment form and registration form.
    6 Version: 2.4.0
     6Version: 2.4.1
    77Author: Mersane, Ltd
    88Author URI: https://www.keycaptcha.com
     
    1010*/
    1111/*
    12 Copyright (C) 2011 Mersane, Ltd (www.keycaptcha.com). All rights reserved.
     12Copyright (C) 2011-2013 Mersane, Ltd (www.keycaptcha.com). All rights reserved.
    1313
    1414This program is free software; you can redistribute it and/or
     
    5353                $this->p_kc_js_code = $a_js_code;
    5454            }
    55             $this->p_kc_session_id = uniqid() . '-2.4.0.014';
     55            $this->p_kc_session_id = uniqid() . '-2.4.1.014';
    5656            $this->p_kc_visitor_ip = $_SERVER["REMOTE_ADDR"];
    5757        }
     
    455455$keycaptcha_path = WP_PLUGIN_DIR.'/keycaptcha';
    456456
     457add_action( 'init', 'kcinit' );
     458
     459function kcinit() {
     460  global $wp_version, $keycaptcha_wp_o;
     461
    457462// initialize admin panel
    458463if ( ! file_exists(  WP_PLUGIN_DIR.'/keycaptcha/keycaptcha_multisite.php' ) ) {
     
    509514//add_shortcode('keycaptcha', 'keycaptcha_shortcode', true );
    510515//add_filter('keycaptcha_process_custom_forms', array($keycaptcha_wp_o, 'keycaptcha_process_custom_forms'), 0);
     516}
    511517
    512518// uninstall KeyCAPTCHA
  • keycaptcha/trunk/keycaptcha_multisite_.php

    r553673 r705290  
    22/*
    33KeyCAPTCHA plugin for WordPress
    4 Version     2.4.0
     4Version     2.4.1
    55Author      Mersane, Ltd
    66Author URI  https://www.keycaptcha.com
     
    1111*/
    1212/*
    13 Copyright (C) 2011 Mersane, Ltd (www.keycaptcha.com). All rights reserved.
     13Copyright (C) 2011-2013 Mersane, Ltd (www.keycaptcha.com). All rights reserved.
    1414
    1515This program is free software; you can redistribute it and/or
  • keycaptcha/trunk/keycaptcha_settings.php

    r553673 r705290  
    22/*
    33KeyCAPTCHA plugin for WordPress
    4 Version     2.4.0
     4Version     2.4.1
    55Author      Mersane, Ltd
    66Author URI  https://www.keycaptcha.com
     
    88*/
    99/*
    10 Copyright (C) 2011 Mersane, Ltd (www.keycaptcha.com). All rights reserved.
     10Copyright (C) 2011-2013 Mersane, Ltd (www.keycaptcha.com). All rights reserved.
    1111
    1212This program is free software; you can redistribute it and/or
  • keycaptcha/trunk/readme.txt

    r597392 r705290  
    44Tags: captcha, widget, plugin, post, comments, image, images, anti-spam, admin, keycaptcha, social, AJAX
    55Requires at least: 2.7
    6 Tested up to: 3.4.1
     6Tested up to: 3.5.1
    77Stable tag: trunk
    88
     
    281281== Changelog ==
    282282
     283= 2.4.1 =
     284* Fixed bug with Contact Form 7 ver 3.4
     285
    283286= 2.4.0 =
    284287* Fixed bug with redeclare cnt_comments_kc
Note: See TracChangeset for help on using the changeset viewer.