Here's a small patch to make it display the number of logfile entries after its entry in the Admin's block (where it only says "(N/A)" at the moment):
Text Formatted Code
function plugin_getadminoption_bad_behavior ()
{
global $_CONF, $LANG_BAD_BEHAVIOR, $wp_bb_log;
if (SEC_inGroup ('Bad Behavior Admin')) {
return array ($LANG_BAD_BEHAVIOR['plugin_display_name'],
$_CONF['site_admin_url'] . '/plugins/'
. BAD_BEHAVIOR_PLUGIN . '/index.php',
DB_count ($wp_bb_log));
}
}
This is a replacement for the function of the same name in the plugin's functions.inc file.
Also, please not that Bad Behavior deletes logfile entries older than 7 days automatically.
bye, Dirk