Version Description
- Fixed TinyMCE role issue
Download this release
Release Info
Developer | nlemoine |
Plugin | WP Better Emails |
Version | 0.2.4 |
Comparing to | |
See all releases |
Code changes from version 0.2.3 to 0.2.4
- readme.txt +5 -1
- wpbe.php +2 -2
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=7Q49V
|
|
3 |
Tags: email, emails, html emails, templates, notification, wp_mail, wpmu, multisite
|
4 |
Requires at least: 2.8
|
5 |
Tested up to: 3.3
|
6 |
-
Stable tag: 0.2.
|
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.
|
@@ -117,6 +117,10 @@ You can place this function in your functions.php theme file or in a plugin.
|
|
117 |
|
118 |
== Changelog ==
|
119 |
|
|
|
|
|
|
|
|
|
120 |
= 0.2.3 =
|
121 |
|
122 |
* Fixed 3.3 beta compatilibity
|
3 |
Tags: email, emails, html emails, templates, notification, wp_mail, wpmu, multisite
|
4 |
Requires at least: 2.8
|
5 |
Tested up to: 3.3
|
6 |
+
Stable tag: 0.2.4
|
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.
|
117 |
|
118 |
== Changelog ==
|
119 |
|
120 |
+
= 0.2.4 =
|
121 |
+
|
122 |
+
* Fixed TinyMCE role issue
|
123 |
+
|
124 |
= 0.2.3 =
|
125 |
|
126 |
* Fixed 3.3 beta compatilibity
|
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.
|
7 |
Author: ArtyShow
|
8 |
Author URI: http://wordpress.org/extend/plugins/wp-better-emails/
|
9 |
License: GPLv2
|
@@ -173,7 +173,7 @@ if (!class_exists('WP_Better_Emails')) {
|
|
173 |
*/
|
174 |
function is_wpbe_page() {
|
175 |
global $page_hook;
|
176 |
-
if ($page_hook
|
177 |
return true;
|
178 |
return false;
|
179 |
}
|
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.4
|
7 |
Author: ArtyShow
|
8 |
Author URI: http://wordpress.org/extend/plugins/wp-better-emails/
|
9 |
License: GPLv2
|
173 |
*/
|
174 |
function is_wpbe_page() {
|
175 |
global $page_hook;
|
176 |
+
if ($page_hook === $this->page)
|
177 |
return true;
|
178 |
return false;
|
179 |
}
|