Mailgun for WordPress - Version 1.7.8

Version Description

(2021-05-13): = - Tested WP 5.7.1

Download this release

Release Info

Developer Mailgun
Plugin Icon 128x128 Mailgun for WordPress
Version 1.7.8
Comparing to
See all releases

Code changes from version 1.7.7 to 1.7.8

Files changed (3) hide show
  1. CHANGELOG.md +3 -0
  2. mailgun.php +3 -3
  3. readme.txt +5 -2
CHANGELOG.md CHANGED
@@ -1,6 +1,9 @@
1
  Changelog
2
  =========
3
 
 
 
 
4
  1.7.7 (2021-03-16)
5
  - Updated assets, tested WP 5.7
6
 
1
  Changelog
2
  =========
3
 
4
+ 1.7.8 (2021-05-13)
5
+ - Tested WP 5.7.1
6
+
7
  1.7.7 (2021-03-16)
8
  - Updated assets, tested WP 5.7
9
 
mailgun.php CHANGED
@@ -4,7 +4,7 @@
4
  * Plugin Name: Mailgun
5
  * Plugin URI: http://wordpress.org/extend/plugins/mailgun/
6
  * Description: Mailgun integration for WordPress
7
- * Version: 1.7.7
8
  * Author: Mailgun
9
  * Author URI: http://www.mailgun.com/
10
  * License: GPLv2 or later
@@ -344,7 +344,7 @@ class Mailgun
344
  ?>
345
  <li>
346
  <input type="checkbox" class="mailgun-list-name"
347
- name="addresses[<?php echo $la[ 'address' ]; ?>]"/> <?php echo $la[ 'name' ]; ?>
348
  </li>
349
  <?php endforeach; ?>
350
  </ul>
@@ -428,7 +428,7 @@ class Mailgun
428
  public function build_list_form($atts)
429
  {
430
  if (isset($atts[ 'id' ]) && $atts[ 'id' ] != ''):
431
- $args[ 'widget_id' ] = md5(rand(10000, 99999) + $atts[ 'id' ]);
432
 
433
  if (isset($atts[ 'collect_name' ])):
434
  $args[ 'collect_name' ] = true;
4
  * Plugin Name: Mailgun
5
  * Plugin URI: http://wordpress.org/extend/plugins/mailgun/
6
  * Description: Mailgun integration for WordPress
7
+ * Version: 1.7.8
8
  * Author: Mailgun
9
  * Author URI: http://www.mailgun.com/
10
  * License: GPLv2 or later
344
  ?>
345
  <li>
346
  <input type="checkbox" class="mailgun-list-name"
347
+ name="addresses[<?php echo $la[ 'address' ]; ?>]"/> <?php echo ($la[ 'name' ] ?: $la[ 'address' ]); ?>
348
  </li>
349
  <?php endforeach; ?>
350
  </ul>
428
  public function build_list_form($atts)
429
  {
430
  if (isset($atts[ 'id' ]) && $atts[ 'id' ] != ''):
431
+ $args[ 'widget_id' ] = md5(rand(10000, 99999) . $atts[ 'id' ]);
432
 
433
  if (isset($atts[ 'collect_name' ])):
434
  $args[ 'collect_name' ] = true;
readme.txt CHANGED
@@ -4,8 +4,8 @@ Mailgun for WordPress
4
  Contributors: mailgun, sivel, lookahead.io, m35dev
5
  Tags: mailgun, smtp, http, api, mail, email
6
  Requires at least: 3.3
7
- Tested up to: 5.7.0
8
- Stable tag: 1.7.7
9
  License: GPLv2 or later
10
 
11
 
@@ -129,6 +129,9 @@ MAILGUN_FROM_ADDRESS Type: string
129
 
130
  == Changelog ==
131
 
 
 
 
132
  = 1.7.7 (2021-03-16): =
133
  - Updated assets, tested WP 5.7
134
 
4
  Contributors: mailgun, sivel, lookahead.io, m35dev
5
  Tags: mailgun, smtp, http, api, mail, email
6
  Requires at least: 3.3
7
+ Tested up to: 5.7.1
8
+ Stable tag: 1.7.8
9
  License: GPLv2 or later
10
 
11
 
129
 
130
  == Changelog ==
131
 
132
+ = 1.7.8 (2021-05-13): =
133
+ - Tested WP 5.7.1
134
+
135
  = 1.7.7 (2021-03-16): =
136
  - Updated assets, tested WP 5.7
137