Skip to content

Commit

Permalink
fix log date showing as "Last Modified"
Browse files Browse the repository at this point in the history
fixes 3652
  • Loading branch information
webaware committed Nov 26, 2018
1 parent abc2afe commit ff9dd7d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Changelog

### 1.3.1, 2018-11-26

* fixed: log date shows as "Last modified"

### 1.3.0, 2018-11-20

* fixed: recursive looping when saving a post triggers an email on publish state (e.g. Notification plugin)
Expand Down
1 change: 1 addition & 0 deletions includes/class.LogEmailsPostTypeLog.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ public function init() {
add_action('manage_edit-' . self::POST_TYPE . '_sortable_columns', array($this, 'adminSortableColumns'));
add_filter('manage_' . self::POST_TYPE . '_posts_columns', array($this, 'adminManageColumns'), 100);
add_action('manage_' . self::POST_TYPE . '_posts_custom_column', array($this, 'adminManageCustomColumn'), 10, 2);
add_filter('post_date_column_status', '__return_empty_string');
add_filter('post_row_actions', array($this, 'postRowActions'), 10, 2);
add_filter('gettext', array($this, 'removePublished'), 10, 3);
add_action('admin_print_footer_scripts', array($this, 'adminPrintFooterScripts'));
Expand Down

0 comments on commit ff9dd7d

Please sign in to comment.