yep, another one hiding there that I didn’t see ??
I fixed it now, will be correct in v1.0.3 (coming in some hours or days depending on how much time I have).
If you want to change the code yourself, edit bbp-toolkit.php and change the following lines between the end of function bbptoolkit_admin_header and the beginning of function bbptoolkit_basic_sysinfo :
function bbptoolkit_admin_header() {
wp_enqueue_script('bbptoolkitadminjs', plugin_dir_url( __FILE__ ).'js/bbptoolkit-config.js');
}
function bbptoolkit_add_admin_menu() {
$confHook = add_management_page('bbP Toolkit', 'bbP Toolkit', 'edit_posts', 'forums_toolkit', 'forums_toolkit_page');
add_action("admin_head-$confHook", 'bbptoolkit_admin_header');
}
add_action('admin_menu', 'bbptoolkit_add_admin_menu');
function bbptoolkit_basic_sysinfo() {
Sorry for this mess,
Pascal.