Changeset 486152
- Timestamp:
- 01/07/2012 01:11:15 PM (14 years ago)
- Location:
- contact-form-7-bwp-recaptcha-extension/trunk
- Files:
-
- 1 deleted
- 3 edited
-
contact-form-7-bwp-recaptcha-extension.php (modified) (2 diffs)
-
includes/CF7bwpCAPT.class.php (modified) (3 diffs)
-
includes/recaptcha/recaptchalib.php (deleted)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
contact-form-7-bwp-recaptcha-extension/trunk/contact-form-7-bwp-recaptcha-extension.php
r485945 r486152 4 4 Plugin URI: http://www.manfersite.tk/cf7bwpcapt 5 5 Description: Provides Better WordPress reCAPTCHA possibilities to the Contact Form 7 plugin. Requires both. 6 Version: 0. 46 Version: 0.5 7 7 Author: Fernando San Julián 8 8 Email: manfer.site@gmail.com … … 31 31 // this is the 'driver' file that instantiates the object 32 32 define( 'ALLOW_CF7_BWP_CAPT_INCLUDE', true ); 33 define( 'CF7BWPRECAPT_VERSION', '0. 4' );33 define( 'CF7BWPRECAPT_VERSION', '0.5' ); 34 34 define( 'CF7BWPRECAPT_URL', 'http://www.manfersite.tk/cf7bwpcapt' ); 35 35 define( 'CF7BWPRECAPT_TITLE', 'Contact Form 7 BWP reCAPTCHA Extension' ); -
contact-form-7-bwp-recaptcha-extension/trunk/includes/CF7bwpCAPT.class.php
r485945 r486152 39 39 $this->options = get_option( $options ); 40 40 $this->requirements_met = $this->meets_requirements(); 41 42 require_once( dirname(__FILE__) . '/recaptcha/recaptchalib.php' );43 41 44 42 // register settings page … … 422 420 $bwp_capt_lang = $bwp_capt->options['select_lang']; 423 421 422 // override bwp recaptcha options with cf7 bwp recaptcha ones when needed 424 423 if ( $this->options[ 'select_theme' ] === 'cf7' 425 424 && isset( $this->options[ 'cf7_theme' ] ) ) { … … 432 431 } 433 432 434 // add_recaptcha function outputs directly so we have to buffer 435 // that to store it in a variable instead. 433 // load recaptcha library 434 if ( ! defined( 'RECAPTCHA_API_SERVER' ) ) 435 require_once( plugin_dir_path( $bwp_capt->plugin_file ) . 'includes/recaptcha/recaptchalib.php' ); 436 437 // add_recaptcha echoes so we have to buffer its output 438 // to store it in a variable instead. 436 439 ob_start(); 437 440 $bwp_capt->add_recaptcha(); -
contact-form-7-bwp-recaptcha-extension/trunk/readme.txt
r485945 r486152 5 5 Requires at least: 2.9 6 6 Tested up to: 3.1.3 7 Stable tag: 0. 47 Stable tag: 0.5 8 8 9 9 This plugin provides a new tag for the Contact Form 7 Plugin. It allows the usage of a reCAPTCHA field provided by the BWP reCAPTCHA Plugin. … … 66 66 == Changelog == 67 67 68 = 0.5 (20120107) = 69 * Fixed breaks BWP Recaptcha registration form feature. 70 68 71 = 0.4 (20120107) = 69 72 * Fixed hide for qualified users feature.
Note: See TracChangeset
for help on using the changeset viewer.