Quote:
Originally Posted by Chompy
hehe
I just had to edit it :o
(<3)
|
Haha, good stuff :P.
But...
Quote:
Originally Posted by Chompy
PHP Code:
public function hasVar(var) { if (var in this.getdynamicvarnames()) return isValidVar(var); }
|
For that, if the var isn't a dynamic variable, then the function won't return anything

.
This should do the trick

.
PHP Code:
public function hasVar(var) {
return isValidVar(temp.var) && (temp.var in this.getdynamicvarnames());
}