X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/timetracker.git/blobdiff_plain/2b02e65a452b9ab911d3a3c3072302f6e39dfec7..2646345bd9517aafb6b96bfe9cd795ee0f8c8e84:/export.php diff --git a/export.php b/export.php index 3d617814..2206def2 100644 --- a/export.php +++ b/export.php @@ -27,7 +27,6 @@ // +----------------------------------------------------------------------+ require_once('initialize.php'); -import('ttExportHelper'); import('ttOrgExportHelper'); import('form.Form'); @@ -57,11 +56,7 @@ if ($request->isPost()) { $mime_type = 'application/x-bzip2'; } - if (defined('SUBGROUP_DEBUG') && isTrue(SUBGROUP_DEBUG)) { - $exportHelper = new ttOrgExportHelper(); - } else { - $exportHelper = new ttExportHelper(); - } + $exportHelper = new ttOrgExportHelper(); if ($exportHelper->createDataFile($compress)) { header('Pragma: public'); // This is needed for IE8 to download files over https. header('Content-Type: '.$mime_type);