Version Description
Download this release
Release Info
Developer | No3x |
Plugin | WP Mail Logging |
Version | 1.3.2 |
Comparing to | |
See all releases |
Code changes from version 1.3.1 to 1.3.2
- WPML_Email_Log_List.php +3 -2
- assets/images/banner/banner-772x250.png +0 -0
- assets/images/banner/banner-772x250.psd +0 -0
- assets/images/screenshots/screenshot-1.png +0 -0
- assets/images/screenshots/screenshot-2.png +0 -0
- assets/images/screenshots/screenshot-3.png +0 -0
- readme.txt +6 -3
- wp-mail-logging.php +1 -1
WPML_Email_Log_List.php
CHANGED
@@ -130,13 +130,14 @@ class Email_Logging_ListTable extends WP_List_Table {
|
|
130 |
switch( $column_name ) {
|
131 |
case 'mail_id':
|
132 |
case 'timestamp':
|
133 |
-
case 'receiver':
|
134 |
case 'subject':
|
135 |
case 'message':
|
136 |
case 'headers':
|
137 |
case 'attachments':
|
138 |
case 'plugin_version':
|
139 |
-
return
|
|
|
|
|
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;
|
130 |
switch( $column_name ) {
|
131 |
case 'mail_id':
|
132 |
case 'timestamp':
|
|
|
133 |
case 'subject':
|
134 |
case 'message':
|
135 |
case 'headers':
|
136 |
case 'attachments':
|
137 |
case 'plugin_version':
|
138 |
+
return $item[$column_name];
|
139 |
+
case 'receiver':
|
140 |
+
return esc_html( $item[ $column_name ] );
|
141 |
default:
|
142 |
// 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)
|
143 |
return (is_array( $res = apply_filters( WPML_Plugin::HOOK_LOGGING_COLUMNS_RENDER, $item, $column_name ) ) ) ? "" : $res;
|
assets/images/banner/banner-772x250.png
CHANGED
Binary file
|
assets/images/banner/banner-772x250.psd
CHANGED
Binary file
|
assets/images/screenshots/screenshot-1.png
CHANGED
Binary file
|
assets/images/screenshots/screenshot-2.png
CHANGED
Binary file
|
assets/images/screenshots/screenshot-3.png
ADDED
Binary file
|
readme.txt
CHANGED
@@ -1,12 +1,12 @@
|
|
1 |
=== WP Mail Logging ===
|
2 |
Contributors: No3x, tripflex
|
3 |
Donate link: http://no3x.de/web/donate
|
4 |
-
Tags: mail, email, log, logging, list, store, collect, view
|
5 |
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 |
|
@@ -36,12 +36,15 @@ Just install and activate wp-mail-logging. The plugin will do the work for you!
|
|
36 |
|
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 |
|
1 |
=== WP Mail Logging ===
|
2 |
Contributors: No3x, tripflex
|
3 |
Donate link: http://no3x.de/web/donate
|
4 |
+
Tags: mail, email, log, logging, debug, list, store, collect, view
|
5 |
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.2
|
10 |
|
11 |
Logs each email sent by WordPress.
|
12 |
|
36 |
|
37 |
|
38 |
== Screenshots ==
|
39 |
+
1. The List
|
40 |
2. The Detail View
|
41 |
3. The Settings
|
42 |
|
43 |
|
44 |
== Changelog ==
|
45 |
+
= 1.3.2, September 21, 2014 =
|
46 |
+
- Fixed HTML mails broken in previous version.
|
47 |
+
|
48 |
= 1.3.1, September 12, 2014 =
|
49 |
- Fixed angle brackets notation support (e.g. John Doe <john.doe@example.org>).
|
50 |
|
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.2
|
7 |
Author: Christian Zöller
|
8 |
Author URI: http://no3x.de/
|
9 |
Description: Logs each email sent by WordPress.
|