The switch/case statement does not seem to work
correctly with short integers. I founs a workaround by
casting into (int) but it can be annoying with no
workaround...
Example
switch(request.field)
{
case 22:
default:
}
where request.field is a "short" never reaches the case
"22" even if the short is 22, it goes to default case.
Logged In: YES
user_id=18885
Fixed in 1.3. The switch value was not being compared
properly. Now any numeric or wrapper type can be used.