From 7781aa65cef32d8c8196979edb21ec4551e5b904 Mon Sep 17 00:00:00 2001 From: Yehuda Hassine Date: Mon, 22 Apr 2019 00:23:38 +0300 Subject: better meta query,bugs, optimization --- Postman/Postman-Email-Log/PostmanEmailLogView.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'Postman/Postman-Email-Log/PostmanEmailLogView.php') diff --git a/Postman/Postman-Email-Log/PostmanEmailLogView.php b/Postman/Postman-Email-Log/PostmanEmailLogView.php index 2f41bcf..a9722bd 100644 --- a/Postman/Postman-Email-Log/PostmanEmailLogView.php +++ b/Postman/Postman-Email-Log/PostmanEmailLogView.php @@ -1,5 +1,7 @@ sprintf( '%s', $deleteUrl, _x( 'Delete', 'Delete an item from the email log', 'post-smtp' ) ), @@ -365,7 +367,7 @@ class PostmanEmailLogView extends WP_List_Table { /* Translators: where %s indicates the relative time from now */ $date = sprintf( _x( '%s ago', 'A relative time as in "five days ago"', 'post-smtp' ), $humanTime ); } - $meta_values = get_post_meta( $post->ID ); + $meta_values = PostmanEmailLogs::get_data( $post->ID ); $sent_to = array_map( 'sanitize_email', explode( ',' , $meta_values ['to_header'] [0] ) ); $flattenedPost = array( // the post title must be escaped as they are displayed in the HTML output -- cgit v1.2.3