Quote:
Originally Posted by PowerProNL
I don't care about == or =
it works fine so what is the problem.
|
Please stop scripting.
An example of when it's a problem:
PHP Code:
function onCreated() {
if (wasBar()) {
// this shouldn't be called, but is!
echo("damn");
}
}
function wasBar() {
temp.foo = "foo";
return (foo = "bar");
}