X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/timetracker.git/blobdiff_plain/5210e7673369389701814dab3bf646b7a0d98437..4da474b3fee7606ff8ce81b9e9c9d1fe82a82bdc:/export.php diff --git a/export.php b/export.php index b194adfb..f278b7c9 100644 --- a/export.php +++ b/export.php @@ -28,7 +28,7 @@ require_once('initialize.php'); import('ttExportHelper'); -import('ttExportHelper2'); +import('ttOrgExportHelper'); import('form.Form'); // Access check. @@ -57,11 +57,11 @@ if ($request->isPost()) { $mime_type = 'application/x-bzip2'; } - if (defined('SUBGROUP_DEBUG') && isTrue(SUBGROUP_DEBUG)) { - $exportHelper = new ttExportHelper2(); - } else { - $exportHelper = new ttExportHelper(); - } +// if (defined('SUBGROUP_DEBUG') && isTrue(SUBGROUP_DEBUG)) { + $exportHelper = new ttOrgExportHelper(); +// } else { +// $exportHelper = new ttExportHelper(); +// } if ($exportHelper->createDataFile($compress)) { header('Pragma: public'); // This is needed for IE8 to download files over https. header('Content-Type: '.$mime_type);