X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=tofile.php;h=07bbc11a67f1235804f958b5d3956bd33f1e9272;hb=56f1fd19f2c9c72878395b3275f03f192ccca082;hp=d996098b71da7dba01d6bfb7d3d9d65fd5e1977c;hpb=405a3dc75eaf770313b2da57bc25088e5c6e76bd;p=timetracker.git 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);