define('CURRENCY_DEFAULT', '$');
-// EXPORT_DECIMAL_DURATION - defines whether time duration values are decimal in CSV and XML data exports (1.25 vs 1:15).
+// EXPORT_DECIMAL_DURATION - defines whether time duration values are decimal in CSV and XML data exports (1.25 or 1,25 vs 1:15).
//
define('EXPORT_DECIMAL_DURATION', true);
}
function time_to_decimal($a) {
+ global $user;
$tmp = explode(":", $a);
if($tmp[1]{0}=="0") $tmp[1] = $tmp[1]{1};
$m = round($tmp[1]*100/60);
if($m<10) $m = "0".$m;
- $time = $tmp[0].".".$m;
+ $time = $tmp[0].$user->decimal_mark.$m;
return $time;
}
<br>
<table cellspacing="0" cellpadding="4" width="100%" border="0">
<tr>
- <td align="center"> Anuko Time Tracker 1.9.24.3495 | Copyright © <a href="https://www.anuko.com/lp/tt_3.htm" target="_blank">Anuko</a> |
+ <td align="center"> Anuko Time Tracker 1.9.25.3496 | Copyright © <a href="https://www.anuko.com/lp/tt_3.htm" target="_blank">Anuko</a> |
<a href="https://www.anuko.com/lp/tt_4.htm" target="_blank">{$i18n.footer.credits}</a> |
<a href="https://www.anuko.com/lp/tt_5.htm" target="_blank">{$i18n.footer.license}</a> |
<a href="https://www.anuko.com/lp/tt_7.htm" target="_blank">{$i18n.footer.improve}</a>