Quote:
Originally Posted by zokemon
== is not required.
= works just fine.
|
== is required.
= may have worked in GS1, but it acts a lot differently (as it should) in GS2.
For example:
PHP Code:
if (this.foo == 1)
This checks if this.foo equals 1
PHP Code:
if (this.bar = 1)
This assigns the value '1' to this.bar and returns the value of this.bar after the assignment.