]> wagnertech.de Git - timetracker.git/blobdiff - export.php
Rolling back old import-export due to a problem with undeclared entities during XML...
[timetracker.git] / export.php
index b194adfb324e5e5db9a6adc20a67d832098c52cf..cf3bccfa91f43f9b93c9380b9ec8ab2d5e96d589 100644 (file)
@@ -28,7 +28,7 @@
 
 require_once('initialize.php');
 import('ttExportHelper');
-import('ttExportHelper2');
+import('ttOrgExportHelper');
 import('form.Form');
 
 // Access check.
@@ -58,9 +58,9 @@ if ($request->isPost()) {
   }
 
   if (defined('SUBGROUP_DEBUG') && isTrue(SUBGROUP_DEBUG)) {
-    $exportHelper = new ttExportHelper2();
+    $exportHelper = new ttOrgExportHelper();
   } else {
-    $exportHelper = new ttExportHelper();
+      $exportHelper = new ttExportHelper();
   }
   if ($exportHelper->createDataFile($compress)) {
     header('Pragma: public'); // This is needed for IE8 to download files over https.