Quote:
|
Originally Posted by excaliber7388
XD Still, the "" confuse me, since they seem to be comming out of no where, ad not all the strings have extra ""
|
The new engine, during array to string conversion, makes arrays take on an old engine "string list" appearance, i.e.
PHP Code:
this.foo = {"bar", {"baz", "rtr"}};
... is essentially:
PHP Code:
setstring this.foo,"bar,"baz,rtr"";