diff --git a/wp-content/plugins/smtp-mailer/main.php b/wp-content/plugins/smtp-mailer/main.php index 4bbf03e1..e72827e7 100644 --- a/wp-content/plugins/smtp-mailer/main.php +++ b/wp-content/plugins/smtp-mailer/main.php @@ -1,7 +1,7 @@ /', $address, $matches ) ) { - if ( count( $matches ) == 3 ) { + if ( count( $matches ) === 3 ) { $recipient_name = $matches[1]; $address = $matches[2]; } diff --git a/wp-content/plugins/smtp-mailer/readme.txt b/wp-content/plugins/smtp-mailer/readme.txt index ca635a0c..150465ad 100644 --- a/wp-content/plugins/smtp-mailer/readme.txt +++ b/wp-content/plugins/smtp-mailer/readme.txt @@ -2,9 +2,9 @@ Contributors: naa986 Donate link: https://wphowto.net/ Tags: email, mail, smtp, phpmailer -Requires at least: 6.2 -Tested up to: 6.2 -Stable tag: 1.1.6 +Requires at least: 6.3 +Tested up to: 6.3 +Stable tag: 1.1.9 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -103,6 +103,15 @@ none == Changelog == += 1.1.9 = +* Additional check for the settings link. + += 1.1.8 = +* Removed admin notices to avoid confusion since configurations can vary on different servers. + += 1.1.7 = +* WordPress 6.3 compatibility update. + = 1.1.6 = * WordPress 6.2 compatibility update.