My understanding is that the
.zip file above contains this code STARTING AT LINE 417 >>>
[code:1] $database->setQuery("SELECT a.*, a.name AS category, u.name AS editor, g.name AS groupname, h.name AS admingroup" . "nFROM #__fb_categories AS a"
// . "nLEFT JOIN #__fb_categories AS b ON b.id = a.parent"
. "nLEFT JOIN #__users AS u ON u.id = a.checked_out" . "nLEFT JOIN #__core_acl_aro_groups AS g ON g.id = a.pub_access"
. "nLEFT JOIN #__core_acl_aro_groups AS h ON h.id = a.admin_access" . "n GROUP BY a.id" . "n ORDER BY a.ordering, a.name"«»);
[/code:1]
[color=#FF0000]Which replaces the following code in the current admin.fireboard.php file AT "APPROXIMATELY" LINE 371 ([i]depending on build date[/i]):[/color]
[code:1] $database->setQuery("SELECT a.*, a.name AS category, u.name AS editor, g.name AS groupname, h.name AS admingroup" . "nFROM #__fb_categories AS a"
/* . "nLEFT JOIN #__fb_categories AS b ON b.id = a.parent"*/
. "nLEFT JOIN #__users AS u ON u.id = a.checked_out"
. "nLEFT JOIN #__core_acl_aro_groups AS g ON g.group_id = a.pub_access" . "nLEFT JOIN #__core_acl_aro_groups AS h ON h.group_id = a.admin_access" . "n GROUP BY a.id" . "n ORDER BY a.ordering, a.name"«»);[/code:1]
This worked for me on 8-06-2007 with FireBoard 1.0.2 SVN nightly and Joomla 1.5 nightly. Substituting only this section retains the newest FireBoard admin development work accomplished since this "very welcome" adjustment was published some months ago. For me, this was a preferred alternative to completely replacing admin.fireboard.php with the older file.