Quote:
Originally Posted by TheMilkCarton
Yeah, sorry.. I was right the first time I guess.  But I thought you could use "AND" if you also used "!==" such as
Code:
<if condition="THIS_SCRIPT !== 'forumdisplay' AND THIS_SCRIPT !== 'showthread'">
Wouldn't that show code in everything but forumdisplay and showthread? Or is it still "OR"?
|
That would shown everywhere execpt forumdisplay and showthead. Also, !== (or ===) is only used when comparing types. != (or ==) should be used in any other case.