Quote:
Today at 04:35 AM Logician said this in Post #149
that is right..
VB 3 is announced to have some sort of "conditional" concept. So I believe this hack will be obsolete when vb3 is released. However I'm not sure if conditional concept of vb3 will be same with this hack's. Obviously the syntax would be different. But hopefully it is only the syntax that will be different. For instance it may some other restrictions like 1 conditional per template etc. (which this hack does not have). We'll see when it's released.
|
The vBulletin 3.0 one supports multiple conditionals and there syntax is:
Code:
<if condition="condition">
// stuff
<else />
// stuff
</if>
example:
Code:
<table>
<tr>
<if condition="$vboptions['$vbversion'] == 3.0">
<td>vB 3.0 is here!</td>
<else />
<td>Still waiting...</td>
</if>
</tr></table>