Version Description
- Bugfix, the settings link on the Plugin page was broken by 0.8.4.
Download this release
Release Info
Developer | chmac |
Plugin | WP Mail SMTP by WPForms |
Version | 0.8.5 |
Comparing to | |
See all releases |
Code changes from version 0.8.4 to 0.8.5
- readme.txt +7 -1
- wp_mail_smtp.php +3 -2
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.callum-macdonald.com/code/donate/
|
|
4 |
Tags: mail, smtp, wp_mail, mailer, phpmailer
|
5 |
Requires at least: 2.7
|
6 |
Tested up to: 2.9.2
|
7 |
-
Stable tag: 0.8.
|
8 |
|
9 |
Reconfigures the wp_mail() function to use SMTP instead of mail() and creates an options page to manage the settings.
|
10 |
|
@@ -61,6 +61,9 @@ By all means please contact me to discuss features or options you'd like to see
|
|
61 |
|
62 |
== Changelog ==
|
63 |
|
|
|
|
|
|
|
64 |
= 0.8.4 =
|
65 |
* Minor bugfix, remove use of esc_html() to improve backwards compatibility.
|
66 |
* Removed second options page menu props ovidiu.
|
@@ -119,6 +122,9 @@ By all means please contact me to discuss features or options you'd like to see
|
|
119 |
|
120 |
== Upgrade Notice ==
|
121 |
|
|
|
|
|
|
|
122 |
= 0.8.4 =
|
123 |
Minor bugfix for users using constants. Another very low priority upgrade. Apologies for the version creep.
|
124 |
|
4 |
Tags: mail, smtp, wp_mail, mailer, phpmailer
|
5 |
Requires at least: 2.7
|
6 |
Tested up to: 2.9.2
|
7 |
+
Stable tag: 0.8.5
|
8 |
|
9 |
Reconfigures the wp_mail() function to use SMTP instead of mail() and creates an options page to manage the settings.
|
10 |
|
61 |
|
62 |
== Changelog ==
|
63 |
|
64 |
+
= 0.8.5 =
|
65 |
+
* Bugfix, the settings link on the Plugin page was broken by 0.8.4.
|
66 |
+
|
67 |
= 0.8.4 =
|
68 |
* Minor bugfix, remove use of esc_html() to improve backwards compatibility.
|
69 |
* Removed second options page menu props ovidiu.
|
122 |
|
123 |
== Upgrade Notice ==
|
124 |
|
125 |
+
= 0.8.5 =
|
126 |
+
Minor bugfix correctingn the Settings link bug introduced in 0.8.4. Very low priority update.
|
127 |
+
|
128 |
= 0.8.4 =
|
129 |
Minor bugfix for users using constants. Another very low priority upgrade. Apologies for the version creep.
|
130 |
|
wp_mail_smtp.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: WP-Mail-SMTP
|
4 |
-
Version: 0.8.
|
5 |
Plugin URI: http://www.callum-macdonald.com/code/wp-mail-smtp/
|
6 |
Description: Reconfigures the wp_mail() function to use SMTP instead of mail() and creates an options page to manage the settings.
|
7 |
Author: Callum Macdonald
|
@@ -38,6 +38,7 @@ define('WPMS_SMTP_PASS', 'password'); // SMTP authentication password, only used
|
|
38 |
/**
|
39 |
* CHANGELOG
|
40 |
*
|
|
|
41 |
* 0.8.4 - Minor bugfix, remove use of esc_html() to improve backwards compatibility. Removed second options page menu props ovidiu.
|
42 |
* 0.8.3 - Bugfix, return WPMS_MAIL_FROM_NAME, props nacin. Add Settings link, props MikeChallis.
|
43 |
* 0.8.2 - Bugfix, call phpmailer_init_smtp() correctly, props Sinklar.
|
@@ -426,7 +427,7 @@ function wp_mail_plugin_action_links( $links, $file ) {
|
|
426 |
if ( $file != plugin_basename( __FILE__ ))
|
427 |
return $links;
|
428 |
|
429 |
-
$settings_link = '<a href="
|
430 |
|
431 |
array_unshift( $links, $settings_link );
|
432 |
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: WP-Mail-SMTP
|
4 |
+
Version: 0.8.5
|
5 |
Plugin URI: http://www.callum-macdonald.com/code/wp-mail-smtp/
|
6 |
Description: Reconfigures the wp_mail() function to use SMTP instead of mail() and creates an options page to manage the settings.
|
7 |
Author: Callum Macdonald
|
38 |
/**
|
39 |
* CHANGELOG
|
40 |
*
|
41 |
+
* 0.8.5 - Bugfix, the settings link on the Plugin page was broken by 0.8.4.
|
42 |
* 0.8.4 - Minor bugfix, remove use of esc_html() to improve backwards compatibility. Removed second options page menu props ovidiu.
|
43 |
* 0.8.3 - Bugfix, return WPMS_MAIL_FROM_NAME, props nacin. Add Settings link, props MikeChallis.
|
44 |
* 0.8.2 - Bugfix, call phpmailer_init_smtp() correctly, props Sinklar.
|
427 |
if ( $file != plugin_basename( __FILE__ ))
|
428 |
return $links;
|
429 |
|
430 |
+
$settings_link = '<a href="options.php?page=wp-mail-smtp/wp_mail_smtp.php">' . __( 'Settings', 'wp_mail_smtp' ) . '</a>';
|
431 |
|
432 |
array_unshift( $links, $settings_link );
|
433 |
|