Skip to content

Commit

Permalink
v 0.9.1
Browse files Browse the repository at this point in the history
- Disable useless asset loading.
  • Loading branch information
Darklg committed Dec 11, 2024
1 parent c4f35cc commit 71d53ad
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions wpuerrorlogs.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Plugin URI: https://github.com/WordPressUtilities/wpuerrorlogs
Update URI: https://github.com/WordPressUtilities/wpuerrorlogs
Description: Make sense of your log files
Version: 0.9.0
Version: 0.9.1
Author: Darklg
Author URI: https://github.com/Darklg
Text Domain: wpuerrorlogs
Expand All @@ -23,7 +23,7 @@
class WPUErrorLogs {
public $settings_update;
private $number_of_days = 10;
private $plugin_version = '0.9.0';
private $plugin_version = '0.9.1';
private $plugin_settings = array(
'id' => 'wpuerrorlogs',
'name' => 'WPU Error Logs'
Expand Down Expand Up @@ -59,7 +59,10 @@ public function init() {

# TOOLBOX
require_once __DIR__ . '/inc/WPUBaseToolbox/WPUBaseToolbox.php';
$this->basetoolbox = new \wpuerrorlogs\WPUBaseToolbox();
$this->basetoolbox = new \wpuerrorlogs\WPUBaseToolbox(array(
'plugin_name' => $this->plugin_settings['name'],
'need_form_js' => false
));

# CUSTOM PAGE
$admin_pages = array(
Expand Down

0 comments on commit 71d53ad

Please sign in to comment.