Thank you.
Could you please have a test :
In /projeqtor/view/objectDetail.php, add 1 line before line 965, from this :
echo ' value="' . htmlEncode($val) . '" >
to
traceLog("$col=$val=".htmlEncode($val));
echo ' value="' . $val . '" >Then try again to display Ticket with non displayed decimal value.
Does it display correcly now ?
What is is the log file ? (please post log file content here)
Thank you.
What is you PHP Version ?
If it is 5.6, can you please check pnp.ini, what is value for default_charset ?
Found issue.
It seems to happen on PHP 5.6 (could reproduce on PHP 5.6 but could not on PHP 5.5)
Fix is to add new line after line 61 in /model/NumberFormatter52.php :
}
setlocale(LC_NUMERIC, 'C');
if (array_key_exists('browserLocaleDecimalPoint', $_SESSION)) {
$this->decimalSeparator=$_SESSION['browserLocaleDecimalPoint'];
}
Fix will be deployed in Patch 5.1.5 (coming soon)