Skip to content

Commit

Permalink
Fix for message type search/filter not working. fix #428
Browse files Browse the repository at this point in the history
  • Loading branch information
bonny committed Feb 24, 2024
1 parent c3182b3 commit 95064a7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion inc/class-log-query.php
Original file line number Diff line number Diff line change
Expand Up @@ -1288,7 +1288,7 @@ protected function get_outer_where( $args ) {
}

$sql_logger_messages_in = rtrim( $sql_logger_messages_in, ' ,' );
$sql_logger_messages_in = "\n AND c1.value IN ({$sql_logger_messages_in}) ";
$sql_logger_messages_in = "\n AND context_message_key IN ({$sql_logger_messages_in}) ";

$sql_messages_where .= sprintf(
'
Expand Down
5 changes: 3 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -215,8 +215,9 @@ This can be modified using the filter [`simple_history/db_purge_days_interval`](

### n.n.n. (unreleased)

- Fix for php notice when user has no roles. [Fix #429](https://github.com/bonny/WordPress-Simple-History/issues/429).
- Fix for logging theme switch if done via WP CLI.
- Fix for message type search/filter not working. [#428](https://github.com/bonny/WordPress-Simple-History/issues/428)
- Fix for php notice when user has no roles. [#429](https://github.com/bonny/WordPress-Simple-History/issues/429).
- Fix for logging theme switch if done via WP CLI.

### 4.11.0 (february 2024)

Expand Down

0 comments on commit 95064a7

Please sign in to comment.