diff options
author | yehudah <yehudah@b8457f37-d9ea-0310-8a92-e5e31aec5664> | 2019-12-03 11:58:25 +0000 |
---|---|---|
committer | yehudah <yehudah@b8457f37-d9ea-0310-8a92-e5e31aec5664> | 2019-12-03 11:58:25 +0000 |
commit | 7610194aa450257eadc1a0b110e33ddc935f0589 (patch) | |
tree | 6dbe5b56a142afbb2ffe7d51184485465220a886 | |
parent | b5fd728e37aa2a9c7a5f37e8dead0a95117d541b (diff) | |
download | Post-SMTP-7610194aa450257eadc1a0b110e33ddc935f0589.zip |
Fix insert log error notification
-rw-r--r-- | Postman/Postman-Email-Log/PostmanEmailLogService.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Postman/Postman-Email-Log/PostmanEmailLogService.php b/Postman/Postman-Email-Log/PostmanEmailLogService.php index 624342d..ec50745 100644 --- a/Postman/Postman-Email-Log/PostmanEmailLogService.php +++ b/Postman/Postman-Email-Log/PostmanEmailLogService.php @@ -167,6 +167,7 @@ if ( ! class_exists( 'PostmanEmailLogService' ) ) { $message = $post_id->get_error_message(); printf( '<div class="%1$s"><p>%2$s</p></div>', esc_attr( $class ), esc_html( $message ) ); + return; }); } |