Version Description
- Fixed: critical bug with REALLY SIMPLE CAPTCHA not showing image
Download this release
Release Info
Developer | flixos90 |
Plugin | Bootstrap for Contact Form 7 |
Version | 1.4.4 |
Comparing to | |
See all releases |
Code changes from version 1.4.3 to 1.4.4
- bootstrap-for-contact-form-7.php +2 -2
- changelog.txt +3 -0
- modules/really-simple-captcha.php +1 -1
- readme.txt +5 -2
bootstrap-for-contact-form-7.php
CHANGED
@@ -10,7 +10,7 @@
|
|
10 |
* Plugin Name: Bootstrap for Contact Form 7
|
11 |
* Plugin URI: https://wordpress.org/plugins/bootstrap-for-contact-form-7/
|
12 |
* Description: This plugin modifies the output of the popular Contact Form 7 plugin to be styled in compliance with themes using the Bootstrap CSS framework.
|
13 |
-
* Version: 1.4.
|
14 |
* Author: Felix Arntz
|
15 |
* Author URI: https://leaves-and-love.net
|
16 |
* License: GNU General Public License v3
|
@@ -24,7 +24,7 @@ if ( ! defined( 'WPCF7_AUTOP' ) ) {
|
|
24 |
}
|
25 |
|
26 |
function cf7bs_maybe_init() {
|
27 |
-
define( 'CF7BS_VERSION', '1.4.
|
28 |
define( 'CF7BS_MAINFILE', __FILE__ );
|
29 |
define( 'CF7BS_PATH', untrailingslashit( plugin_dir_path( CF7BS_MAINFILE ) ) );
|
30 |
define( 'CF7BS_URL', untrailingslashit( plugin_dir_url( CF7BS_MAINFILE ) ) );
|
10 |
* Plugin Name: Bootstrap for Contact Form 7
|
11 |
* Plugin URI: https://wordpress.org/plugins/bootstrap-for-contact-form-7/
|
12 |
* Description: This plugin modifies the output of the popular Contact Form 7 plugin to be styled in compliance with themes using the Bootstrap CSS framework.
|
13 |
+
* Version: 1.4.4
|
14 |
* Author: Felix Arntz
|
15 |
* Author URI: https://leaves-and-love.net
|
16 |
* License: GNU General Public License v3
|
24 |
}
|
25 |
|
26 |
function cf7bs_maybe_init() {
|
27 |
+
define( 'CF7BS_VERSION', '1.4.4' );
|
28 |
define( 'CF7BS_MAINFILE', __FILE__ );
|
29 |
define( 'CF7BS_PATH', untrailingslashit( plugin_dir_path( CF7BS_MAINFILE ) ) );
|
30 |
define( 'CF7BS_URL', untrailingslashit( plugin_dir_url( CF7BS_MAINFILE ) ) );
|
changelog.txt
CHANGED
@@ -1,5 +1,8 @@
|
|
1 |
== Changelog ==
|
2 |
|
|
|
|
|
|
|
3 |
= 1.4.3 =
|
4 |
* Fixed: plugin compatibility fatal errors with Contact Form 7 version 4.8 related to form validation and REALLY SIMPLE CAPTCHA
|
5 |
* Fixed: Contact Form 7 version 4.7 features are now being used
|
1 |
== Changelog ==
|
2 |
|
3 |
+
= 1.4.4 =
|
4 |
+
* Fixed: critical bug with REALLY SIMPLE CAPTCHA not showing image
|
5 |
+
|
6 |
= 1.4.3 =
|
7 |
* Fixed: plugin compatibility fatal errors with Contact Form 7 version 4.8 related to form validation and REALLY SIMPLE CAPTCHA
|
8 |
* Fixed: Contact Form 7 version 4.7 features are now being used
|
modules/really-simple-captcha.php
CHANGED
@@ -108,7 +108,7 @@ function cf7bs_captcha_shortcode_handler( $tag ) {
|
|
108 |
|
109 |
$tag = cf7bs_captchar_to_captchac( $tag );
|
110 |
|
111 |
-
$$captchac_mode = function_exists( '
|
112 |
}
|
113 |
|
114 |
$field = new CF7BS_Form_Field( cf7bs_apply_field_args_filter( array(
|
108 |
|
109 |
$tag = cf7bs_captchar_to_captchac( $tag );
|
110 |
|
111 |
+
$$captchac_mode = function_exists( 'wpcf7_captchac_form_tag_handler' ) ? wpcf7_captchac_form_tag_handler( $tag ) : ( function_exists( 'wpcf7_captcha_form_tag_handler' ) ? wpcf7_captcha_form_tag_handler( $tag ) : wpcf7_captcha_shortcode_handler( $tag ) );
|
112 |
}
|
113 |
|
114 |
$field = new CF7BS_Form_Field( cf7bs_apply_field_args_filter( array(
|
readme.txt
CHANGED
@@ -8,8 +8,8 @@ Contributors: flixos90
|
|
8 |
Donate link: https://leaves-and-love.net/wordpress-plugins/
|
9 |
Requires at least: 3.6
|
10 |
Tested up to: 4.8
|
11 |
-
Stable tag: 1.4.
|
12 |
-
Version: 1.4.
|
13 |
License: GNU General Public License v3
|
14 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
15 |
Tags: contact form 7, wpcf7, bootstrap, bootstrap 3, bootstrap framework, addon, contact form 7 addon, contact form, cf7bs
|
@@ -111,6 +111,9 @@ You can also contribute to the plugin by translating it. Simply visit [translate
|
|
111 |
|
112 |
== Changelog ==
|
113 |
|
|
|
|
|
|
|
114 |
= 1.4.3 =
|
115 |
* Fixed: plugin compatibility fatal errors with Contact Form 7 version 4.8 related to form validation and REALLY SIMPLE CAPTCHA
|
116 |
* Fixed: Contact Form 7 version 4.7 features are now being used
|
8 |
Donate link: https://leaves-and-love.net/wordpress-plugins/
|
9 |
Requires at least: 3.6
|
10 |
Tested up to: 4.8
|
11 |
+
Stable tag: 1.4.4
|
12 |
+
Version: 1.4.4
|
13 |
License: GNU General Public License v3
|
14 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
15 |
Tags: contact form 7, wpcf7, bootstrap, bootstrap 3, bootstrap framework, addon, contact form 7 addon, contact form, cf7bs
|
111 |
|
112 |
== Changelog ==
|
113 |
|
114 |
+
= 1.4.4 =
|
115 |
+
* Fixed: critical bug with REALLY SIMPLE CAPTCHA not showing image
|
116 |
+
|
117 |
= 1.4.3 =
|
118 |
* Fixed: plugin compatibility fatal errors with Contact Form 7 version 4.8 related to form validation and REALLY SIMPLE CAPTCHA
|
119 |
* Fixed: Contact Form 7 version 4.7 features are now being used
|