I fixed the native fireboard search, can you check if it works still and tell me if there is an issue still there? (links were wrong sending to main site if SEF is on)
Fix
sources/fb_search.class.php
Change this line:
| Code: |
echo '<td class = "td-1" ><a href="'. sefRelToAbs(JB_LIVEURLREL . '&func=view&id=' . $result->id . '&catid=' . $result->catid . '#' . $result->id) . '" >' . $ressubject . '</a><br />' . $searchResultList . '<br /><br /></td>';
|
to
| Code: |
echo '<td class = "td-1" ><a href="'. sefRelToAbs(JB_LIVEURLREL . '&func=view&id=' . $result->id . '&catid=' . $result->catid ). '#' . $result->id . '" >' . $ressubject . '</a><br />' . $searchResultList . '<br /><br /></td>';
|