Contact Form Builder – a plugin for creating contact and feedback forms - Version 1.0.28

Version Description

Changed: Compability with Wordpress 4.3.

Download this release

Release Info

Developer webdorado
Plugin Icon 128x128 Contact Form Builder – a plugin for creating contact and feedback forms
Version 1.0.28
Comparing to
See all releases

Code changes from version 1.0.27 to 1.0.28

admin/controllers/CFMControllerWidget.php CHANGED
@@ -23,7 +23,7 @@ class CFMControllerWidget extends WP_Widget {
23
  // Widget Control Settings.
24
  $control_ops = array('id_base' => 'contact_form_maker_widget');
25
  // Create the widget.
26
- $this->WP_Widget('contact_form_maker_widget', 'Contact Form Builder', $widget_ops, $control_ops);
27
  require_once WD_CFM_DIR . "/admin/models/CFMModelWidget.php";
28
  $this->model = new CFMModelWidget();
29
 
23
  // Widget Control Settings.
24
  $control_ops = array('id_base' => 'contact_form_maker_widget');
25
  // Create the widget.
26
+ parent::__construct('contact_form_maker_widget', 'Contact Form Builder', $widget_ops, $control_ops);
27
  require_once WD_CFM_DIR . "/admin/models/CFMModelWidget.php";
28
  $this->model = new CFMModelWidget();
29
 
contact-form-builder.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Contact Form Builder
4
  * Plugin URI: http://web-dorado.com/products/wordpress-contact-form-builder.html
5
  * Description: Contact Form Builder is an advanced plugin to add contact forms into your website. It comes along with multiple default templates which can be customized.
6
- * Version: 1.0.27
7
  * Author: WebDorado
8
  * Author URI: http://web-dorado.com/
9
  * License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
@@ -170,7 +170,7 @@ if (class_exists('WP_Widget')) {
170
  // Activate plugin.
171
  function contact_form_maker_activate() {
172
  $version = get_option("wd_contact_form_maker_version");
173
- $new_version = '1.0.27';
174
  if ($version && version_compare($version, $new_version, '<')) {
175
  require_once WD_CFM_DIR . "/contact-form-builder-update.php";
176
  contact_form_maker_update($version);
3
  * Plugin Name: Contact Form Builder
4
  * Plugin URI: http://web-dorado.com/products/wordpress-contact-form-builder.html
5
  * Description: Contact Form Builder is an advanced plugin to add contact forms into your website. It comes along with multiple default templates which can be customized.
6
+ * Version: 1.0.28
7
  * Author: WebDorado
8
  * Author URI: http://web-dorado.com/
9
  * License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
170
  // Activate plugin.
171
  function contact_form_maker_activate() {
172
  $version = get_option("wd_contact_form_maker_version");
173
+ $new_version = '1.0.28';
174
  if ($version && version_compare($version, $new_version, '<')) {
175
  require_once WD_CFM_DIR . "/contact-form-builder-update.php";
176
  contact_form_maker_update($version);
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: webdorado
3
  Donate link: http://web-dorado.com/products/wordpress-contact-form-builder.html
4
  Tags: form, forms, contact form, contact forms, contact form plugin, contact forms plugin, forms plugin, Contact Form Builder, contact form manager, multiple contact forms, custom form, Contact Form Builder with recaptcha, contact form with google map, feedback form, feedback forms, contact us, wordpress contact form, email form, feedback, web form, contact me, email, contact manager, contact us form, admin, captcha, contact, database, email, javascript, jquery, page, plugin, survey, widget, custom form, forms creator, text input, validation, send copy, form with captcha, advanced form, recaptcha, contact form with captcha
5
  Requires at least: 3.4
6
- Tested up to: 4.2
7
- Stable tag: 1.0.27
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -138,6 +138,9 @@ After downloading the ZIP file,
138
 
139
  == Changelog ==
140
 
 
 
 
141
  = 1.0.27 =
142
  Fixed: Javascript conflict with some themes.
143
 
3
  Donate link: http://web-dorado.com/products/wordpress-contact-form-builder.html
4
  Tags: form, forms, contact form, contact forms, contact form plugin, contact forms plugin, forms plugin, Contact Form Builder, contact form manager, multiple contact forms, custom form, Contact Form Builder with recaptcha, contact form with google map, feedback form, feedback forms, contact us, wordpress contact form, email form, feedback, web form, contact me, email, contact manager, contact us form, admin, captcha, contact, database, email, javascript, jquery, page, plugin, survey, widget, custom form, forms creator, text input, validation, send copy, form with captcha, advanced form, recaptcha, contact form with captcha
5
  Requires at least: 3.4
6
+ Tested up to: 4.3
7
+ Stable tag: 1.0.28
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
138
 
139
  == Changelog ==
140
 
141
+ = 1.0.28 =
142
+ Changed: Compability with Wordpress 4.3.
143
+
144
  = 1.0.27 =
145
  Fixed: Javascript conflict with some themes.
146