Best of joomla gives you news, joomla templates, tutorials and websites about Joomla , FireBoard and FireMessage official page.
| No account yet?   |
The FireBoard forum component development is still going on. In order to get better, FireBoard will be moved from the Best of Joomla website.
During this transition period, the forum in Best of Joomla will be closed to new posts.
Welcome, Guest
Please Login or Register.    Lost Password?
FireBoard Manual Latest release discussions Download FireBoard
Transfer Fireboard 1.0.4 from J1.0.15 to J1.5.x (1 viewing) (1) Guest
TOPIC: Transfer Fireboard 1.0.4 from J1.0.15 to J1.5.x
#50720
Re:Transfer Fireboard 1.0.4 from J1.0.15 to J1.5.x 7 Months, 3 Weeks ago  
Also need to add this code around line 220, so that the users can see the categories under the forum.

After doing this, everything is working great for me.
dave.itter (User)
Fresh Boarder
Posts: 1
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
 
#51559
Re:Transfer Fireboard 1.0.4 from J1.0.15 to J1.5.x 7 Months, 1 Week ago  
jerry wrote:
Solution for BUG - restricting access rights

/components/com_fireboard/template/default/listcat.php

replace this code on lines 118, 207
Code:


$letPass = fb_has_read_permission($obj_fb_cat, $allow_forum, $aro_group->group_id, $acl);



with
Code:


$j15 = FBTools::isJoomla15();
if ($j15) {
$letPass = fb_has_read_permission($obj_fb_cat, $allow_forum, $aro_group->id, $acl);
} else {
$letPass = fb_has_read_permission($obj_fb_cat, $allow_forum, $aro_group->group_id, $acl);
}



Description: Renamed column group_id to id in Joomla 1.5


This fix totally broke my forum. Is there something I am doing wrong, other than just replacing code?
jared bonshire (User)
Fresh Boarder
Posts: 15
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
 
#51645
Re:Transfer Fireboard 1.0.4 from J1.0.15 to J1.5.x 7 Months, 1 Week ago  
This fixed my issue!!! Thanks!!!
Dale (User)
Fresh Boarder
Posts: 4
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
 
Go to top