]> wagnertech.de Git - timetracker.git/blobdiff - invoices.php
Work in progress on subgroups in invoices.
[timetracker.git] / invoices.php
index 1723a8d1dc698f42af6b9c2825fd550a62d38f58..eb89e0ea733830aa34532eca97bddcfd785a555d 100644 (file)
@@ -28,7 +28,7 @@
 
 require_once('initialize.php');
 import('form.Form');
-import('ttTeamHelper');
+import('ttGroupHelper');
 
 // Access checks.
 if (!(ttAccessAllowed('manage_invoices') || ttAccessAllowed('view_own_invoices'))) {
@@ -40,7 +40,7 @@ if (!$user->isPluginEnabled('iv')) {
   exit();
 }
 
-$invoices = ttTeamHelper::getActiveInvoices();
+$invoices = ttGroupHelper::getActiveInvoices();
 
 $smarty->assign('invoices', $invoices);
 $smarty->assign('title', $i18n->get('title.invoices'));