Quote:
Originally Posted by aranthorn
Ah just for giggles, here's the part of my FORUMDISPLAY that is modified:
Code:
<!-- show threads -->
<if condition="$show['stickies']">
$threadbits_sticky
$threadbits_personalsticky
<tr>
<td class="thead" colspan="0"> </td>
</tr>
</if>
$threadbits
<!-- end show threads -->
|
The above post was found over
here and is not compatible with the 1.03b version of this MOD.
I had the above code aswell, but will cause that the threads I personal stick are lost at the forums and cant be found anymore.
This solves:
Code:
<!-- show threads -->
<if condition="$show['stickies']">
$threadbits_sticky
</if>
$threadbits_personalsticky
$threadbits
<!-- end show threads -->