In file D:\oblib-core\php\oblib\dataType\dataPrimitive.datatype.php between lines 156 and 168.
<?php
class dataString extends dataPrimitive
{
public function ___setValue ($strNodeValue)
{
if ($strNodeValue !== NULL)
{
$strNodeValue = (string) $strNodeValue;
}
return parent::___setValue ($strNodeValue);
}
}
?>