Hi
I have some function parameters that are .STRING, but are numeric, like:
In main() I find I have to do this:
Is this a bug?
I have some function parameters that are .STRING, but are numeric, like:
PHP Code:
fpArray[x] = new FunctionParameter("sPeriod2", FunctionParameter.STRING);
...
with (fp) {
addOption("3");
...
PHP Code:
if (typeof(sPeriod2) == "number") {
sPeriod2 = sPeriod2.toString();
}
Is this a bug?
Comment