Quote:
Originally Posted by SecondV
I don't mess with postbit much, but this hack uses $thread and $threadinfo for everything. Postbit *should* be $post
|
That worked great, it shows up when I use this
Code:
<a href="solved.php?$session[sessionurl]do=marksolved&t=$post[threadid]"><img class="inlineimg" src="$stylevar[imgdir_button]/marksolved.gif" alt="$vbphrase[solvedthread_marksolved]" /></a>
But I can not get the conditionals to work, like this.
Code:
<if condition="$show['solvedthread']">
<a href="solved.php?$session[sessionurl]do=marksolved&t=$post[threadid]"><img class="inlineimg" src="$stylevar[imgdir_button]/marksolved.gif" alt="$vbphrase[solvedthread_marksolved]" /></a>
<else />
<if condition="$show['solvedthread_unsolve']">
<a href="solved.php?$session[sessionurl]do=markunsolved&t=$post[threadid]"><img class="inlineimg" src="$stylevar[imgdir_button]/marksolved.gif" alt="$vbphrase[solvedthread_markunsolved]" /></a>
</if>
any idea how to get that working?