Skip to content

Commit

Permalink
fix for fast table display (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
pjaudiomv authored Sep 28, 2022
1 parent 9027c54 commit d0cf53b
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 10 deletions.
3 changes: 2 additions & 1 deletion bmlt-wordpress-satellite-plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
Plugin URI: https://bmlt.app
Author: MAGSHARE
Description: This is a WordPress plugin satellite of the Basic Meeting List Toolbox.
Version: 3.11.1
Version: 3.11.2
Install: Drop this directory into the "wp-content/plugins/" directory and activate it.
********************************************************************************************/

Expand Down Expand Up @@ -578,6 +578,7 @@ protected function set_callbacks()
add_action('admin_init', array ( self::get_plugin_object(), 'admin_ajax_handler' ));
add_action('admin_menu', array ( self::get_plugin_object(), 'option_menu' ));
add_action('init', array ( self::get_plugin_object(), 'filter_init' ));
wp_enqueue_script("leaflet", $this->get_plugin_path() . "table_display.js", false, filemtime($this->get_plugin_path() . "table_display.js"), false);
} else {
echo "<!-- BMLTPlugin ERROR (set_callbacks)! No add_action()! -->";
}
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"squizlabs/php_codesniffer": "3.*"
},
"require": {
"bmlt/bmlt-satellite-base-class": "^3.11.2",
"bmlt/bmlt-satellite-base-class": "^3.11.3",
"bmlt/bmlt-satellite-driver": "1.1"
}
}
14 changes: 7 additions & 7 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Tags: na, meeting list, meeting finder, maps, recovery, addiction, webservant
Author: bmlt-enabled
Requires at least: 4.0
Tested up to: 6.0.2
Stable tag: 3.11.1
Stable tag: 3.11.2

This is a "satellite" plugin for the Basic Meeting List Toolbox (BMLT).

Expand All @@ -28,6 +28,9 @@ This is a standard WordPress plugin. Either use the in-dashboard installer, or m

= Changelog =

= 3.11.2 =
* Fix for fast table display not displaying properly.

= 3.11.1 =
* Fixed PHP8 fatal error that could occur with port detection.

Expand Down

0 comments on commit d0cf53b

Please sign in to comment.