How to disable JS? info windows from WP-FirePHP

WP-FirePHP installs two debuggers:

  1. FirePHP
  2. jQuery.debug

This is only mentioned in passing on the WP-FirePHP plugin’s page. Sigh.

To disable the jquery debugger, comment out a line in the WP-FirePHP plugin main file. See below. This can be done via the WP Plugin Edit command for the plugin.

function WPFirePHP() {
  add_action( 'admin_init', array(&$this, 'fb_exit') );
  # comment out the next line to remove the JQuery debugger
  ##### add_action( 'admin_init', array(&$this, 'add_scripts') );
}