Hi there,
I use Joomla 1.0.x and Fireboard 1.0.4. The problem was, that when moving a topic, the title of the topic in the old thread, which should link to its new location, was double url-encoded, resulting in something like
...&id=12&ItemID=13... which of course didn't work.
I use the flat layout, so the fix was to edit
/components/com_fireboard/template/default/flat.php on line 355 and change
| Code: |
<a class = "fb-topic-title fbm" href = "<?php echo htmlspecialchars(sefRelToAbs(JB_LIVEURLREL.'&func=view&'.$newURL));?>"><?php echo stripslashes($leaf->subject); ?></a>
|
to either
| Code: |
<a class = "fb-topic-title fbm" href = "<?php echo sefRelToAbs(JB_LIVEURLREL.'&func=view&'.$newURL);?>"><?php echo stripslashes($leaf->subject); ?></a>
|
hoping that JB_LIVEURLREL and the result of sefRelToAbs() are url-encoded, or
| Code: |
<a class = "fb-topic-title fbm" href = "<?php echo htmlspecialchars(sefRelToAbs(htmlspecialchars_decode(JB_LIVEURLREL.'&func=view&'.$newURL)));?>"><?php echo stripslashes($leaf->subject); ?></a>
|
which does some double work but produces valid results independently of the previous question.
This may be an issue when using another layout as well, so the appropriate file(s) should be changed.
Hope this helps someone. As I am not a Joomla/Fireboard expert, better solutions are welcome.
Many thanx to the delelopers

!