Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 2 additions & 8 deletions includes/admin.php
Original file line number Diff line number Diff line change
Expand Up @@ -171,14 +171,8 @@
jQuery('#mailgun-test').click(function (e) {
e.preventDefault()
if (formModified) {
var doTest = confirm('
<?php
_e(
'The Mailgun plugin configuration has changed since you last saved. Do you wish to test anyway?\n\nClick "Cancel" and then "Save Changes" if you wish to save your changes.',
'mailgun'
);
?>
')
var doTest = confirm('<?php _e('The Mailgun plugin configuration has changed since you last saved. Do you wish to test anyway?\n\nClick "Cancel" and then "Save Changes" if you wish to save your changes.',

Check failure on line 174 in includes/admin.php

View workflow job for this annotation

GitHub Actions / WPCS

Opening PHP tag must be on a line by itself

Check failure on line 174 in includes/admin.php

View workflow job for this annotation

GitHub Actions / WPCS

Opening PHP tag must be on a line by itself

Check failure on line 174 in includes/admin.php

View workflow job for this annotation

GitHub Actions / WPCS

Opening parenthesis of a multi-line function call must be the last content on the line
'mailgun'); ?>')

Check failure on line 175 in includes/admin.php

View workflow job for this annotation

GitHub Actions / WPCS

Multi-line function call not indented correctly; expected 24 spaces but found 28

Check failure on line 175 in includes/admin.php

View workflow job for this annotation

GitHub Actions / WPCS

Closing parenthesis of a multi-line function call must be on a line by itself

Check failure on line 175 in includes/admin.php

View workflow job for this annotation

GitHub Actions / WPCS

Closing PHP tag must be on a line by itself
if (!doTest) {
return false
}
Expand Down
5 changes: 4 additions & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Mailgun for WordPress
Contributors: mailgun, sivel, lookahead.io, m35dev, alanfuller
Tags: mailgun, smtp, http, api, mail, email
Tested up to: 6.7.2
Stable tag: 2.1.4
Stable tag: 2.1.5
Requires PHP: 7.4
License: GPLv2 or later

Expand Down Expand Up @@ -133,6 +133,9 @@ MAILGUN_REPLY_TO_ADDRESS Type: string

== Changelog ==

= 2.1.5 (2025-03-06): =
- Fixed bug with sending test emails (JS error)

= 2.1.4 (2025-02-23): =
- Implemented coding standard into plugin
- Fixed a few potential warning related to the plugin
Expand Down
5 changes: 4 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Mailgun for WordPress
Contributors: mailgun, sivel, lookahead.io, m35dev, alanfuller
Tags: mailgun, smtp, http, api, mail, email
Tested up to: 6.7.2
Stable tag: 2.1.4
Stable tag: 2.1.5
Requires PHP: 7.4
License: GPLv2 or later

Expand Down Expand Up @@ -129,6 +129,9 @@ MAILGUN_TRACK_OPENS Type: string Choices: 'yes' or 'no'

== Changelog ==

= 2.1.5 (2025-03-06): =
- Fixed bug with sending test emails (JS error)

= 2.1.4 (2025-02-23): =
- Implemented coding standard into plugin
- Fixed a few potential warning related to the plugin
Expand Down