Skip to content

Commit

Permalink
v 0.18.1
Browse files Browse the repository at this point in the history
- Filter by action interface.
  • Loading branch information
Darklg committed May 19, 2024
1 parent a316a5d commit efb75b0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions wpuactionlogs.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Plugin URI: https://github.com/WordPressUtilities/wpuactionlogs
Update URI: https://github.com/WordPressUtilities/wpuactionlogs
Description: Useful logs about what’s happening on your website admin.
Version: 0.18.0
Version: 0.18.1
Author: Darklg
Author URI: https://darklg.me/
Text Domain: wpuactionlogs
Expand All @@ -25,7 +25,7 @@ class WPUActionLogs {
public $baseadmindatas;
public $settings_details;
public $settings;
private $plugin_version = '0.18.0';
private $plugin_version = '0.18.1';
private $plugin_settings = array(
'id' => 'wpuactionlogs',
'name' => 'WPU Action Logs',
Expand Down Expand Up @@ -337,7 +337,7 @@ function wpubaseadmindatas_cellcontent($cellcontent, $cell_id, $settings) {
$cellcontent .= '<strong style="vertical-align:middle">' . $login . '</strong>';
}
}
if ($cell_id == 'action_type') {
if ($cell_id == 'action_type' || $cell_id == 'action_interface') {
$cellcontent = '<a href="' . esc_url($filter_url) . '">' . esc_html($cellcontent) . '</a>';
}
if ($cell_id == 'action_source') {
Expand Down

0 comments on commit efb75b0

Please sign in to comment.