we encountered an issue in the Request class
the following adjusted test code fails
Code: Select all
$v = array('test' => true);
if(array_keys($v) == range(0, count($v) - 1)) {
echo 'fail';
} else {
echo 'k';
}
now an associative array (struct) with only 1 member gets interpreted as an array for some reason
so for example SetScriptModeSettings fails if you only set 1 settings as the dedicated expects a struct but gets an array
any idea?