QUICK FIX for threaded view bug:
In order to fix the threaded view option (disable the SEO auto redirect that causes the issue)
Open /components/com_fireboard/remplate/default/view.php
and edit line 98 (approx) change
| Code: |
if ($thread != $this_message->id)
|
to
| Code: |
if ($view == "flat" && $thread != $this_message->id)
|
That will disable the auto redirect to SEO URLs while being in threaded view mode.
I will have to add some extra code in order to make sure any bot (google, yahoo, msn, ...) only gets to see either flat OR threaded but never both. Aside from spamming the search engine with duplicate content, the identical URL format for both display modes creates significant search engine problems as the very same URL in flat view mode will return different content than in threaded view. And since the switch between flat and threaded happens by following a link, no search engine will ever know whether it currently looks at a flat or threaded page.