SendinBlue Subscribe Form And WP SMTP - Version 2.9.8

Version Description

  • notation and variable issue fixed
Download this release

Release Info

Developer neeraj_slit
Plugin Icon 128x128 SendinBlue Subscribe Form And WP SMTP
Version 2.9.8
Comparing to
See all releases

Code changes from version 2.9.7 to 2.9.8

Files changed (3) hide show
  1. model/model-forms.php +1 -1
  2. readme.txt +4 -1
  3. sendinblue.php +2 -2
model/model-forms.php CHANGED
@@ -179,7 +179,7 @@ if ( ! class_exists( 'SIB_Forms' ) ) {
179
  continue;
180
  }
181
  $listIDs = maybe_unserialize( $form['listID'] );
182
- $lisIDs = !empty($listIDs) ? $listIDs : [];
183
  // get names form id array.
184
  $lists = SIB_API_Manager::get_lists(); // pair of id and name.
185
 
179
  continue;
180
  }
181
  $listIDs = maybe_unserialize( $form['listID'] );
182
+ $listIDs = !empty($listIDs) ? $listIDs : array();
183
  // get names form id array.
184
  $lists = SIB_API_Manager::get_lists(); // pair of id and name.
185
 
readme.txt CHANGED
@@ -2,7 +2,7 @@
2
  Contributors: neeraj_slit
3
  Tags: sendinblue, marketing automation, email marketing, email campaign, newsletter, wordpress smtp, subscription form, phpmailer, SMTP, wp_mail, massive email, sendmail, ssl, tls, wp-phpmailer, mail smtp, mailchimp, newsletters, email plugin, signup form, email widget, widget, plugin, sidebar, shortcode
4
  Requires at least: 4.4
5
- Tested up to: 5.1.1
6
  Stable tag: trunk
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -112,6 +112,9 @@ In order to create a signup form, you need to:
112
  2. Integrate the form in a sidebar using a widget from WP panel > Appearance > Widgets. The SendinBlue widget form should appear in your widgets list, you just to have to drag and drop the widget into the sidebar of your choice.
113
 
114
  == Changelog ==
 
 
 
115
  = 2.9.7 =
116
  * redirection issue fixed
117
 
2
  Contributors: neeraj_slit
3
  Tags: sendinblue, marketing automation, email marketing, email campaign, newsletter, wordpress smtp, subscription form, phpmailer, SMTP, wp_mail, massive email, sendmail, ssl, tls, wp-phpmailer, mail smtp, mailchimp, newsletters, email plugin, signup form, email widget, widget, plugin, sidebar, shortcode
4
  Requires at least: 4.4
5
+ Tested up to: 5.2.2
6
  Stable tag: trunk
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
112
  2. Integrate the form in a sidebar using a widget from WP panel > Appearance > Widgets. The SendinBlue widget form should appear in your widgets list, you just to have to drag and drop the widget into the sidebar of your choice.
113
 
114
  == Changelog ==
115
+ = 2.9.8 =
116
+ * notation and variable issue fixed
117
+
118
  = 2.9.7 =
119
  * redirection issue fixed
120
 
sendinblue.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: SendinBlue Subscribe Form And WP SMTP
4
  * Plugin URI: https://www.sendinblue.com/?r=wporg
5
  * Description: Easily send emails from your WordPress blog using SendinBlue SMTP and easily add a subscribe form to your site
6
- * Version: 2.9.7
7
  * Author: SendinBlue
8
  * Author URI: https://www.sendinblue.com/?r=wporg
9
  * License: GPLv2 or later
@@ -620,7 +620,7 @@ if ( ! class_exists( 'SIB_Manager' ) ) {
620
 
621
  $listID = $formData['listID'];
622
  if (empty($listID)) {
623
- $listID = [];
624
  }
625
  $interestingLists = isset( $_POST['interestingLists']) ? $_POST['interestingLists'] : array();
626
  $expectedLists = isset( $_POST['listIDs'] ) ? $_POST['listIDs'] : array();
3
  * Plugin Name: SendinBlue Subscribe Form And WP SMTP
4
  * Plugin URI: https://www.sendinblue.com/?r=wporg
5
  * Description: Easily send emails from your WordPress blog using SendinBlue SMTP and easily add a subscribe form to your site
6
+ * Version: 2.9.8
7
  * Author: SendinBlue
8
  * Author URI: https://www.sendinblue.com/?r=wporg
9
  * License: GPLv2 or later
620
 
621
  $listID = $formData['listID'];
622
  if (empty($listID)) {
623
+ $listID = array();
624
  }
625
  $interestingLists = isset( $_POST['interestingLists']) ? $_POST['interestingLists'] : array();
626
  $expectedLists = isset( $_POST['listIDs'] ) ? $_POST['listIDs'] : array();