Changeset 2072498
- Timestamp:
- 04/22/2019 11:35:30 AM (7 years ago)
- Location:
- recaptcha-in-wp-comments-form/trunk
- Files:
-
- 5 edited
-
includes/recaptcha.php (modified) (2 diffs)
-
js/recaptcha.js (modified) (2 diffs)
-
license.txt (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
recaptcha-in-wp-comments.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
recaptcha-in-wp-comments-form/trunk/includes/recaptcha.php
r1923064 r2072498 9 9 /* 10 10 * Class: griwpc_recaptcha 11 * Version: 9.1. 011 * Version: 9.1. 12 12 * Description: This class shows and controls the reCAPTCHA field in WP comments form 13 13 */ … … 62 62 63 63 $translation_array = array( 64 'ajax_url' => get_bloginfo('url' ), 64 65 'ajax_url' => get_admin_url(null, 'admin-ajax.php'), 65 66 66 67 'standardQueries' => ( isset ( $this->options['standardQueries'] ) ? $this->options['standardQueries'] : $defs['standardQueries'] ), -
recaptcha-in-wp-comments-form/trunk/js/recaptcha.js
r1923064 r2072498 8 8 /* 9 9 * Module: Recaptcha functions for init form and verify responses 10 * Version: 0.0.9.0.210 * Version: 11 11 * Description: This module changes the HTML structure of the form when it's displayed for prevent automatic sending, then it verifies the user's response and when 12 12 * the user's response is correct it rewrites the HTML structure of the form. … … 90 90 91 91 var griwpcVerifyCallback = function( griwpcr ) { 92 GriwpcAjax.post ( griwpco.ajax_url + '/wp-admin/admin-ajax.php', { 'action' : 'griwpc_verify_recaptcha', 'resp' : griwpcr }, griwpcProcessAjaxResponse, true );92 GriwpcAjax.post ( griwpco.ajax_url, { 'action' : 'griwpc_verify_recaptcha', 'resp' : griwpcr }, griwpcProcessAjaxResponse, true ); 93 93 } 94 94 -
recaptcha-in-wp-comments-form/trunk/license.txt
r1923064 r2072498 1 Copyright 2016-201 8reCAPTCHA in WP comments form (jmviade@gmail.com : Joan Miquel Viadé Freixes)1 Copyright 2016-201 reCAPTCHA in WP comments form (jmviade@gmail.com : Joan Miquel Viadé Freixes) 2 2 3 3 reCAPTCHA in WP comments form plugin is free software; you can redistribute it and/or modify -
recaptcha-in-wp-comments-form/trunk/readme.txt
r1923064 r2072498 4 4 Tags: reCAPTCHA, comments antispam, antispam, comments reCAPTCHA, antispam protection, google reCAPTCHA, comments form, secure form, security, antispam RTL, RTL Language Support 5 5 Requires at least: 4.0.0 6 Tested up to: 4.9.87 Stable tag: 9.1. 06 Tested up to: 7 Stable tag: 9.1. 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 81 81 82 82 == Changelog == 83 84 85 86 87 83 88 = 9.1.0 = 84 89 * New plugin settings for supporting different WP comments form HTML structure types -
recaptcha-in-wp-comments-form/trunk/recaptcha-in-wp-comments.php
r1923064 r2072498 4 4 Plugin URI: http://www.joanmiquelviade.com/plugin/google-recaptcha-in-wp-comments-form/ 5 5 Description: reCAPTCHA in WP comments form plugin is an ANTISPAM tool that adds a Google reCAPTCHA field inside the comments form of your WP theme when the user is not logged in so that, it protects your site from the spammers. Additionaly, in case of that any spam robot or user manually breaks reCAPTCHA field, the plugin introduces a second verification process that allows you to decide what you want to do with those comments. 6 Version: 9.1. 06 Version: 9.1. 7 7 Author: Joan Miquel Viadé 8 8 Author URI: http://www.joanmiquelviade.com
Note: See TracChangeset
for help on using the changeset viewer.