Version Description
- "The settings have been changed" notice will only be displayed if a input field is changed
Download this release
Release Info
Developer | wpecommerce |
Plugin | Easy WP SMTP |
Version | 1.1.0 |
Comparing to | |
See all releases |
Code changes from version 1.0.9 to 1.1.0
- easy-wp-smtp.php +2 -2
- js/script.js +1 -1
- readme.txt +5 -1
easy-wp-smtp.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Easy WP SMTP
|
4 |
-
Version: 1.0
|
5 |
Plugin URI: http://wp-ecommerce.net/?p=2197
|
6 |
Author: wpecommerce
|
7 |
Author URI: http://wp-ecommerce.net/
|
@@ -382,7 +382,7 @@ if ( ! function_exists( 'swpsmtp_test_mail' ) ) {
|
|
382 |
return $errors;
|
383 |
}
|
384 |
else{
|
385 |
-
return 'Test mail was
|
386 |
}
|
387 |
}
|
388 |
}
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Easy WP SMTP
|
4 |
+
Version: 1.1.0
|
5 |
Plugin URI: http://wp-ecommerce.net/?p=2197
|
6 |
Author: wpecommerce
|
7 |
Author URI: http://wp-ecommerce.net/
|
382 |
return $errors;
|
383 |
}
|
384 |
else{
|
385 |
+
return 'Test mail was sent';
|
386 |
}
|
387 |
}
|
388 |
}
|
js/script.js
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
/*
|
4 |
*add notice about changing in the settings page
|
5 |
*/
|
6 |
-
$( '#swpsmtp-mail input' ).bind( "change
|
7 |
if ( $( this ).attr( 'type' ) != 'submit' ) {
|
8 |
$( '.updated.fade' ).css( 'display', 'none' );
|
9 |
$( '#swpsmtp-settings-notice' ).css( 'display', 'block' );
|
3 |
/*
|
4 |
*add notice about changing in the settings page
|
5 |
*/
|
6 |
+
$( '#swpsmtp-mail input' ).bind( "change select", function() {
|
7 |
if ( $( this ).attr( 'type' ) != 'submit' ) {
|
8 |
$( '.updated.fade' ).css( 'display', 'none' );
|
9 |
$( '#swpsmtp-settings-notice' ).css( 'display', 'block' );
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://wp-ecommerce.net/?p=2197
|
|
4 |
Tags: mail, wordpress smtp, phpmailer, smtp, wp_mail, email, gmail, outgoing mail, privacy, security, sendmail, ssl, tls, wp-phpmailer, mail smtp, wp smtp
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 3.9
|
7 |
-
Stable tag: 1.0
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -75,6 +75,10 @@ Inspired by [WP Mail SMTP](http://wordpress.org/plugins/wp-mail-smtp/) plugin
|
|
75 |
|
76 |
== Changelog ==
|
77 |
|
|
|
|
|
|
|
|
|
78 |
= 1.0.9 =
|
79 |
|
80 |
* Fixed some bugs in the SMTP configuration and mail functionality
|
4 |
Tags: mail, wordpress smtp, phpmailer, smtp, wp_mail, email, gmail, outgoing mail, privacy, security, sendmail, ssl, tls, wp-phpmailer, mail smtp, wp smtp
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 3.9
|
7 |
+
Stable tag: 1.1.0
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
75 |
|
76 |
== Changelog ==
|
77 |
|
78 |
+
= 1.1.0 =
|
79 |
+
|
80 |
+
* "The settings have been changed" notice will only be displayed if a input field is changed
|
81 |
+
|
82 |
= 1.0.9 =
|
83 |
|
84 |
* Fixed some bugs in the SMTP configuration and mail functionality
|