X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=admin_groups.php;h=ae66d15016d2df54f797cbfa60d06ecd5b0ec213;hb=4ebe6fd29283633e5ae7cdb399cc144c38af25fb;hp=fa5f51b21c64d320a64caf136e7513f47d9bade0;hpb=de79fff47f10297d7df2edf34aa6420de71cde5b;p=timetracker.git diff --git a/admin_groups.php b/admin_groups.php index fa5f51b2..ae66d150 100644 --- a/admin_groups.php +++ b/admin_groups.php @@ -27,7 +27,7 @@ // +----------------------------------------------------------------------+ require_once('initialize.php'); -import('ttGroupHelper'); +import('ttOrgHelper'); // Access checks. if (!ttAccessAllowed('administer_site')) { @@ -36,7 +36,7 @@ if (!ttAccessAllowed('administer_site')) { } // End of access checks. -$smarty->assign('teams', ttGroupHelper::getTopGroups()); +$smarty->assign('groups', ttOrgHelper::getOrgs()); $smarty->assign('title', $i18n->get('title.groups')); $smarty->assign('content_page_name', 'admin_groups.tpl'); $smarty->display('index.tpl');