Version Description
- Auto Updation Bug Fixed. (Will not update from next release, if updates are off.)
Download this release
Release Info
Developer | contact-banker |
Plugin | WP Mail Bank: WordPress SMTP Plugin & Email Logs |
Version | 1.19 |
Comparing to | |
See all releases |
Code changes from version 1.18 to 1.19
- lib/wp-install-script.php +5 -1
- readme.txt +5 -1
- wp-mail-bank.php +2 -2
lib/wp-install-script.php
CHANGED
@@ -50,5 +50,9 @@ if (count($wpdb->get_var("SHOW TABLES LIKE '" . wp_mail_bank() . "'")) == 0)
|
|
50 |
)
|
51 |
);
|
52 |
}
|
53 |
-
|
|
|
|
|
|
|
|
|
54 |
?>
|
50 |
)
|
51 |
);
|
52 |
}
|
53 |
+
$option_auto_update_mail = get_option("mail-bank-automatic-update");
|
54 |
+
if($option_auto_update_mail == "")
|
55 |
+
{
|
56 |
+
update_option("mail-bank-automatic-update", "1");
|
57 |
+
}
|
58 |
?>
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: contact-banker, Gallery-Bank
|
|
3 |
Tags: admin, ajax, email, gmail, mail, mail smtp, mailer, outgoing mail, phpmailer, plugin, Post, posts, privacy, security, sendmail, smtp, ssl, tls, wordpress smtp, wp smtp, wp-phpmailer, wp_mail, wp mail, mailer
|
4 |
Requires at least: 2.7
|
5 |
Tested up to: 4.2.2
|
6 |
-
Stable tag: 1.
|
7 |
|
8 |
WP Mail Bank reconfigures the PHP Mailer and make it more enhanced with advanced SMTP settings options.
|
9 |
|
@@ -222,6 +222,10 @@ If any problem occurs, please contact us at [support@tech-banker.com](mailto:sup
|
|
222 |
|
223 |
== Changelog ==
|
224 |
|
|
|
|
|
|
|
|
|
225 |
= 1.18 =
|
226 |
|
227 |
* Minor Bugs Fixed.
|
3 |
Tags: admin, ajax, email, gmail, mail, mail smtp, mailer, outgoing mail, phpmailer, plugin, Post, posts, privacy, security, sendmail, smtp, ssl, tls, wordpress smtp, wp smtp, wp-phpmailer, wp_mail, wp mail, mailer
|
4 |
Requires at least: 2.7
|
5 |
Tested up to: 4.2.2
|
6 |
+
Stable tag: 1.19
|
7 |
|
8 |
WP Mail Bank reconfigures the PHP Mailer and make it more enhanced with advanced SMTP settings options.
|
9 |
|
222 |
|
223 |
== Changelog ==
|
224 |
|
225 |
+
= 1.19 =
|
226 |
+
|
227 |
+
* Auto Updation Bug Fixed. (Will not update from next release, if updates are off.)
|
228 |
+
|
229 |
= 1.18 =
|
230 |
|
231 |
* Minor Bugs Fixed.
|
wp-mail-bank.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Wp Mail Bank
|
|
4 |
Plugin URI: http://tech-banker.com
|
5 |
Description: WP Mail Bank reconfigures the wp_mail() function and make it more enhanced.
|
6 |
Author: Tech Banker
|
7 |
-
Version: 1.
|
8 |
Author URI: http://tech-banker.com
|
9 |
License: GPLv3 or later
|
10 |
*/
|
@@ -360,7 +360,7 @@ function mail_bank_plugin_update_message($args)
|
|
360 |
|
361 |
$is_option_auto_update = get_option("mail-bank-automatic-update");
|
362 |
|
363 |
-
if($is_option_auto_update
|
364 |
{
|
365 |
if (!wp_next_scheduled("mail_bank_auto_update"))
|
366 |
{
|
4 |
Plugin URI: http://tech-banker.com
|
5 |
Description: WP Mail Bank reconfigures the wp_mail() function and make it more enhanced.
|
6 |
Author: Tech Banker
|
7 |
+
Version: 1.19
|
8 |
Author URI: http://tech-banker.com
|
9 |
License: GPLv3 or later
|
10 |
*/
|
360 |
|
361 |
$is_option_auto_update = get_option("mail-bank-automatic-update");
|
362 |
|
363 |
+
if($is_option_auto_update === "" || $is_option_auto_update == "1")
|
364 |
{
|
365 |
if (!wp_next_scheduled("mail_bank_auto_update"))
|
366 |
{
|