When using the Forum plugin with Geeklog 1.4.0, you'll notice that the plugin's entry on Geeklog's stats page appears out of line with the other entries. That's because of a few changes in the plugin API in 1.4.0. Here's a simple fix:
PHP Formatted Code
function plugin_statssummary_forum
()
{
global $_TABLES,
$LANG_GF00;
$total_pages = DB_count
($_TABLES['gf_topic']);
return array ($LANG_GF00['statslabel'], COM_numberFormat
($total_pages));
}
Simply add that function to the Forum's functions.inc file and the plugin's stats will be in line with the rest of the stats again.
The detailed stats (Forum Top 10 Viewed Topics) will need more work for the alternating row colors, but I leave that to Blaine :wink:
bye, Dirk