Skip to content

Commit

Permalink
2.1.1
Browse files Browse the repository at this point in the history
FIX
PHP Version Compatibility.
  • Loading branch information
smusman98 committed Jul 18, 2022
1 parent 87d031d commit e9b82c8
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 11 deletions.
13 changes: 5 additions & 8 deletions Postman/PostmanViewController.php
Original file line number Diff line number Diff line change
Expand Up @@ -458,14 +458,11 @@ public function outputDefaultContent() {
print '</br><hr width="70%"></br>';
/* translators: where %s is the URL to the WordPress.org review and ratings page */
printf(
wp_kses_post( '%s</span></p>' ),
sprintf(
wp_kses_post( '%s <a href="%s">%s</a> %s', 'post-smtp' ),
esc_html__( 'Please consider' ),
esc_url( 'https://wordpress.org/support/view/plugin-reviews/post-smtp?filter=5' ),
esc_html__( 'leaving a review' ),
esc_html__( 'to help spread the word! :D' ),
)
'<p>%s <a href="%s">%s</a>%s</p>',
esc_html__( 'Please consider', 'post-smtp' ),
esc_url( 'https://wordpress.org/support/plugin/post-smtp/reviews/?filter=5' ),
esc_html__( 'leaving a review', 'post-smtp' ),
esc_html( 'to help spread the word! :D', 'post-smtp' )
);
}

Expand Down
4 changes: 2 additions & 2 deletions postman-smtp.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* Plugin Name: Post SMTP
* Plugin URI: https://wordpress.org/plugins/post-smtp/
* Description: Email not reliable? Post SMTP is the first and only WordPress SMTP plugin to implement OAuth 2.0 for Gmail, Hotmail and Yahoo Mail. Setup is a breeze with the Configuration Wizard and integrated Port Tester. Enjoy worry-free delivery even if your password changes!
* Version: 2.1
* Version: 2.1.1
* Author: Post SMTP
* Text Domain: post-smtp
* Author URI: https://postmansmtp.com
Expand Down Expand Up @@ -35,7 +35,7 @@
define( 'POST_SMTP_BASE', __FILE__ );
define( 'POST_SMTP_PATH', __DIR__ );
define( 'POST_SMTP_URL', plugins_url('', POST_SMTP_BASE ) );
define( 'POST_SMTP_VER', '2.1' );
define( 'POST_SMTP_VER', '2.1.1' );
define( 'POST_SMTP_ASSETS', plugin_dir_url( __FILE__ ) . 'assets/' );

$postman_smtp_exist = in_array( 'postman-smtp/postman-smtp.php', (array) get_option( 'active_plugins', array() ) );
Expand Down
6 changes: 5 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Contributors: wpexpertsio
Tags: postman smtp, postman, smtp, email, mail, mailer, email log, oauth2, gmail, google apps, hotmail, yahoo, mandrill api, sendgrid api, elastic email, office365, mailgun
Requires at least: 3.9
Tested up to: 6.0
Stable tag: 2.1
Stable tag: 2.1.1
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -281,6 +281,10 @@ To avoid being flagged as spam, you need to prove your email isn't forged. On a

== Changelog ==

= 2.1.1 - 2022-06-09 =
**FIX**
* PHP Version Compatibility.

= 2.1 - 2022-06-09 =
* **NEW**
* All New UI
Expand Down

0 comments on commit e9b82c8

Please sign in to comment.