X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/timetracker.git/blobdiff_plain/3b59dadb0e60b3379dc2230ffd06c49eaa2e5ef3..e3df211bb657c8036e7c767eeee660fc402a357e:/invoices.php diff --git a/invoices.php b/invoices.php index 1723a8d1..eb89e0ea 100644 --- a/invoices.php +++ b/invoices.php @@ -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'));