Try this:
Edit the file /components/com_fireboard/templates/default/plugins/recentsposts/recentposts.php
Al line 178, change this:
| Code: |
$link = sefRelToAbs("index.php?option=com_fireboard&func=view&id=$row->fbid" . "&catid=$row->catid#$row->fbid"«»);
|
for this:
| Code: |
$link = sefRelToAbs("index.php?option=com_fireboard" . FB_FB_ITEMID_SUFFIX . "&func=view&id=$row->fbid" . "&catid=$row->catid#$row->fbid"«»);
|
Respect to the stats, edit first the file /components/com_fireboard/templates/default/plugins/stats/stats.php
Go to the line 30, and change this:
| Code: |
$profilelink = 'index.php?option=com_fireboard&func=fbprofile&task=showprf&userid=';
|
for this:
| Code: |
$profilelink = 'index.php?option=com_fireboard' . FB_FB_ITEMID_SUFFIX . '&func=fbprofile&task=showprf&userid=';
|
And finally, go to the file /components/com_fireboard/templates/default/plugins/stats/frontstats.php
At line 24, change this:
| Code: |
$userlist = sefReltoAbs('index.php?option=com_fireboard&func=userlist');
|
for this:
| Code: |
$userlist = sefReltoAbs('index.php?option=com_fireboard'. FB_FB_ITEMID_SUFFIX .'&func=userlist');
|
Al line 44 change this:
| Code: |
$statslink = sefRelToAbs('index.php?option=com_fireboard&func=stats');
|
for this:
| Code: |
$statslink = sefRelToAbs('index.php?option=com_fireboard'. FB_FB_ITEMID_SUFFIX .'&func=stats');
|
At line 49, change also this:
| Code: |
$userlist = sefReltoAbs('index.php?option=com_fireboard&func=userlist');
|
for this:
| Code: |
$userlist = sefReltoAbs('index.php?option=com_fireboard'. FB_FB_ITEMID_SUFFIX .'&func=userlist');
|