Version Description
Download this release
Release Info
Developer | No3x |
Plugin | WP Mail Logging |
Version | 1.3.1 |
Comparing to | |
See all releases |
Code changes from version 1.3 to 1.3.1
- WPML_Email_Log_List.php +1 -1
- readme.txt +6 -2
- wp-mail-logging.php +1 -1
WPML_Email_Log_List.php
CHANGED
@@ -136,7 +136,7 @@ class Email_Logging_ListTable extends WP_List_Table {
|
|
136 |
case 'headers':
|
137 |
case 'attachments':
|
138 |
case 'plugin_version':
|
139 |
-
return $item[ $column_name ];
|
140 |
default:
|
141 |
// if we don't know this column maybe a hook does - if no hook extracted data (string) out of the array we can avoid the output of 'Array()' (array)
|
142 |
return (is_array( $res = apply_filters( WPML_Plugin::HOOK_LOGGING_COLUMNS_RENDER, $item, $column_name ) ) ) ? "" : $res;
|
136 |
case 'headers':
|
137 |
case 'attachments':
|
138 |
case 'plugin_version':
|
139 |
+
return esc_html( $item[ $column_name ] );
|
140 |
default:
|
141 |
// if we don't know this column maybe a hook does - if no hook extracted data (string) out of the array we can avoid the output of 'Array()' (array)
|
142 |
return (is_array( $res = apply_filters( WPML_Plugin::HOOK_LOGGING_COLUMNS_RENDER, $item, $column_name ) ) ) ? "" : $res;
|
readme.txt
CHANGED
@@ -6,7 +6,7 @@ License: GPLv3
|
|
6 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
7 |
Requires at least: 3.0
|
8 |
Tested up to: 4.0
|
9 |
-
Stable tag: 1.3
|
10 |
|
11 |
Logs each email sent by WordPress.
|
12 |
|
@@ -37,10 +37,14 @@ Just install and activate wp-mail-logging. The plugin will do the work for you!
|
|
37 |
|
38 |
== Screenshots ==
|
39 |
1. The List
|
40 |
-
2. The
|
|
|
41 |
|
42 |
|
43 |
== Changelog ==
|
|
|
|
|
|
|
44 |
= 1.3, August 24, 2014 =
|
45 |
- Performance improvement
|
46 |
- Fixed screen option for mails per page
|
6 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
7 |
Requires at least: 3.0
|
8 |
Tested up to: 4.0
|
9 |
+
Stable tag: 1.3.1
|
10 |
|
11 |
Logs each email sent by WordPress.
|
12 |
|
37 |
|
38 |
== Screenshots ==
|
39 |
1. The List
|
40 |
+
2. The Detail View
|
41 |
+
3. The Settings
|
42 |
|
43 |
|
44 |
== Changelog ==
|
45 |
+
= 1.3.1, September 12, 2014 =
|
46 |
+
- Fixed angle brackets notation support (e.g. John Doe <john.doe@example.org>).
|
47 |
+
|
48 |
= 1.3, August 24, 2014 =
|
49 |
- Performance improvement
|
50 |
- Fixed screen option for mails per page
|
wp-mail-logging.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: WP Mail Logging
|
4 |
Plugin URI: http://wordpress.org/extend/plugins/wp-mail-logging/
|
5 |
Support URI: https://github.com/No3x/wp-mail-logging/issues
|
6 |
-
Version: 1.3
|
7 |
Author: Christian Zöller
|
8 |
Author URI: http://no3x.de/
|
9 |
Description: Logs each email sent by WordPress.
|
3 |
Plugin Name: WP Mail Logging
|
4 |
Plugin URI: http://wordpress.org/extend/plugins/wp-mail-logging/
|
5 |
Support URI: https://github.com/No3x/wp-mail-logging/issues
|
6 |
+
Version: 1.3.1
|
7 |
Author: Christian Zöller
|
8 |
Author URI: http://no3x.de/
|
9 |
Description: Logs each email sent by WordPress.
|