I thought switch statements could “cascade” down to other cases if you didn’t have a break in them, but apparently not how I was doing it..
]]>switch (’s’) {
case ’s’:
if (null)
{
break;
}
}
I was struggling for days before finding your solution.
The last case in my switch had no break; instruction. It appeared that it looped over and over before throwing a #1068 Error…
Cheers!
]]>