! -> Note
$ -> Affected files
+23-Mar-2009 Joe Hunt
+# Bad thousand/decimal formatting in XLS reports.(OpenOffice)
+$ /reporting/including/excel_report.inc
+
22-Mar-2009 Janusz Dobrowolski/Joe Hun rerun, didn't work (empty file when inserting)
# Fixed item picture display after upload, fixed item image filenames. Option to remove image.
$ /inventory/manage/items.php
{
if (!isset($this->formatAmount[$dec]))
{
- global $thoseps,$decseps;
+ //global $thoseps,$decseps;
$dec = (int)$dec;
- $tsep = $thoseps[user_tho_sep()];
- $dsep = $decseps[user_dec_sep()];
+ //$tsep = $thoseps[user_tho_sep()];
+ //$dsep = $decseps[user_dec_sep()];
+ $tsep = ',';
+ $dsep = '.';
$format = "###{$tsep}###{$tsep}###{$tsep}##0";
if ($dec>0)
$format .= "{$dsep}".str_repeat('0',$dec);