X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=admin_groups.php;h=78e083ca59be3bfa808c6dec63da5780ea7a8be8;hb=2bd9983978cf8d6263e27a531aeb33f365667e37;hp=a5521ad99a0ec34baaa06164b2344bca581bf7b3;hpb=995feb6c9e97991e5b9d9803fbc3c8a41ac48922;p=timetracker.git diff --git a/admin_groups.php b/admin_groups.php index a5521ad9..78e083ca 100644 --- a/admin_groups.php +++ b/admin_groups.php @@ -29,13 +29,14 @@ require_once('initialize.php'); import('ttGroupHelper'); -// Access check. +// Access checks. if (!ttAccessAllowed('administer_site')) { header('Location: access_denied.php'); exit(); } +// End of access checks. -$smarty->assign('teams', ttGroupHelper::getTopGroups()); +$smarty->assign('groups', ttGroupHelper::getTopGroups()); $smarty->assign('title', $i18n->get('title.groups')); -$smarty->assign('content_page_name', 'admin_teams.tpl'); +$smarty->assign('content_page_name', 'admin_groups.tpl'); $smarty->display('index.tpl');