In file D:\oblib-core\php\oblib\dataType\dataPrimitive.datatype.php between lines 170 and 182.
<?php
class dataNumber extends dataPrimitive
{
public function ___setValue ($fltNodeValue)
{
if ($fltNodeValue !== NULL)
{
$fltNodeValue = (float) $fltNodeValue;
}
return parent::___setValue ($fltNodeValue);
}
}
?>