Quote:
I use strpos because between 3.5 and 3.6 (or something along those lines) they changed that value which broke it on some boards.
|
Why check for the value? I removed the check and it seems to work correctly. Why does it matter what the sort is?
Quote:
I use !$thread['sticky'] because the separator is dependent on the transitions between the different thread types. It should ignore sticky threads or else you'll get a "Closed Issues" header at the very top of your stickies.
|
That's right, didn't think about it.
Quote:
My condition is correct. I tested yours and it doesn't work properly.
|
Yep, it doesn't. But I changed it to the following, and that's what I am using (and it does work properly):
Code:
<if condition="$show['supportforum_message']">
<center>
<span class="smallfont">
<strong>
<if condition="$thread['postuserid'] == $vbulletin->userinfo['userid']">
Notice: This issue has been resolved! If you are still experiencing problems, you may reopen the thread.
<else />
<if condition="can_moderate($foruminfo['forumid'], 'canopenclose')">
Notice: This issue has been resolved! The thread may be reopened by the thread starter if he or she is continuing to experience problems.
<else />
Notice: This issue has been resolved! If you are experiencing a similar issue, please create another thread.
</if>
</if>
</strong>
</span>
</center>
<br />
</if>
It is better because if you do not need to call a can_moderate function (and thus avoid an overhead), then why do?