WP Better Emails - Version 0.2.6

Version Description

  • Fixed options not recording on activation
Download this release

Release Info

Developer nlemoine
Plugin Icon 128x128 WP Better Emails
Version 0.2.6
Comparing to
See all releases

Code changes from version 0.2.5 to 0.2.6

Files changed (2) hide show
  1. readme.txt +6 -2
  2. wpbe.php +2 -2
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=7Q49VJQNRCQ8E&lc=FR&item_name=ArtyShow&item_number=wp%2dbetter%2demails&currency_code=EUR&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted
3
  Tags: email, emails, html emails, templates, notification, wp_mail, wpmu, multisite
4
  Requires at least: 2.8
5
- Tested up to: 3.5.1
6
- Stable tag: 0.2.5
7
 
8
  Adds a customizable good looking HTML template to all WP default plain/text emails and lets you set
9
  a custom sender name and email address.
@@ -121,6 +121,10 @@ You can place this function in your functions.php theme file or in a plugin.
121
 
122
  == Changelog ==
123
 
 
 
 
 
124
  = 0.2.5 =
125
 
126
  * Added plain text template support
2
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=7Q49VJQNRCQ8E&lc=FR&item_name=ArtyShow&item_number=wp%2dbetter%2demails&currency_code=EUR&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted
3
  Tags: email, emails, html emails, templates, notification, wp_mail, wpmu, multisite
4
  Requires at least: 2.8
5
+ Tested up to: 3.6
6
+ Stable tag: 0.2.6
7
 
8
  Adds a customizable good looking HTML template to all WP default plain/text emails and lets you set
9
  a custom sender name and email address.
121
 
122
  == Changelog ==
123
 
124
+ = 0.2.6 =
125
+
126
+ * Fixed options not recording on activation
127
+
128
  = 0.2.5 =
129
 
130
  * Added plain text template support
wpbe.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: WP Better Emails
4
  Plugin URI: http://wordpress.org/extend/plugins/wp-better-emails/
5
  Description: Beautify the default text/plain WP mails into fully customizable HTML emails.
6
- Version: 0.2.5
7
  Author: ArtyShow
8
  Author URI: http://wordpress.org/extend/plugins/wp-better-emails/
9
  License: GPLv2
@@ -128,7 +128,7 @@ For any requests, please contact %admin_email%';
128
  );
129
 
130
  // If option doesn't exist, save default option
131
- if ( get_option( 'wpbe_options' ) === null ) {
132
  add_option( 'wpbe_options', $this->options );
133
  }
134
  }
3
  Plugin Name: WP Better Emails
4
  Plugin URI: http://wordpress.org/extend/plugins/wp-better-emails/
5
  Description: Beautify the default text/plain WP mails into fully customizable HTML emails.
6
+ Version: 0.2.6
7
  Author: ArtyShow
8
  Author URI: http://wordpress.org/extend/plugins/wp-better-emails/
9
  License: GPLv2
128
  );
129
 
130
  // If option doesn't exist, save default option
131
+ if ( get_option( 'wpbe_options' ) === false ) {
132
  add_option( 'wpbe_options', $this->options );
133
  }
134
  }