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

Version Description

Changed: Mail header.

Download this release

Release Info

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

Code changes from version 1.0.31 to 1.0.32

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.31
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.31';
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.32
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.32';
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);
frontend/models/CFMModelForm_maker.php CHANGED
@@ -589,7 +589,7 @@ class CFMModelForm_maker {
589
  $from = '';
590
  }
591
 
592
- $headers = 'MIME-Version: 1.0' . "\r\n";
593
  $headers .= $from;
594
  $headers .= 'Content-type: ' . $content_type . '; charset="' . get_option('blog_charset') . '"' . "\r\n";
595
 
@@ -699,7 +699,7 @@ class CFMModelForm_maker {
699
  $from = "";
700
  }
701
 
702
- $headers = 'MIME-Version: 1.0' . "\r\n";
703
  $headers .= $from;
704
  $headers .= 'Content-type: ' . $content_type . '; charset="' . get_option('blog_charset') . '"' . "\r\n";
705
 
589
  $from = '';
590
  }
591
 
592
+ $headers = ''; //'MIME-Version: 1.0' . "\r\n";
593
  $headers .= $from;
594
  $headers .= 'Content-type: ' . $content_type . '; charset="' . get_option('blog_charset') . '"' . "\r\n";
595
 
699
  $from = "";
700
  }
701
 
702
+ $headers = ''; //'MIME-Version: 1.0' . "\r\n";
703
  $headers .= $from;
704
  $headers .= 'Content-type: ' . $content_type . '; charset="' . get_option('blog_charset') . '"' . "\r\n";
705
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ 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.31
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.31 =
142
  Changed: Notices show order.
143
 
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.32
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.32 =
142
+ Changed: Mail header.
143
+
144
  = 1.0.31 =
145
  Changed: Notices show order.
146