X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/timetracker.git/blobdiff_plain/405a3dc75eaf770313b2da57bc25088e5c6e76bd..7051fc8c0f68618bbaff5f8bb48d3478ce93836a:/tofile.php diff --git a/tofile.php b/tofile.php index d996098b..07bbc11a 100644 --- a/tofile.php +++ b/tofile.php @@ -84,12 +84,14 @@ if ('xml' == $type) { print "\n"; print "\n"; - $group_by1 = $bean->getAttribute('group_by1'); if ($totals_only) { - // Totals only report. Print subtotals. + // Totals only report. + $group_by_tag = ttReportHelper::makeGroupByXmlTag($options); + + // Print subtotals. foreach ($subtotals as $subtotal) { print "\n"; - print "\t<".$group_by1.">\n"; + print "\t<".$group_by_tag.">\n"; if ($bean->getAttribute('chduration')) { $val = $subtotal['time']; if($val && defined('EXPORT_DECIMAL_DURATION') && isTrue(EXPORT_DECIMAL_DURATION)) @@ -161,7 +163,6 @@ if ('csv' == $type) { $bom = chr(239).chr(187).chr(191); // 0xEF 0xBB 0xBF in the beginning of the file is UTF8 BOM. print $bom; // Without this Excel does not display UTF8 characters properly. - $group_by1 = $bean->getAttribute('group_by1'); if ($totals_only) { // Totals only report. $group_by_header = ttReportHelper::makeGroupByHeader($options);