X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/timetracker.git/blobdiff_plain/aa54f082eb63cdd420733b79c5ec8a8f02def11c..fd6aa4c43cecf1754280ae8abb9f58add8c6c977:/admin_group_delete.php diff --git a/admin_group_delete.php b/admin_group_delete.php index 7c7df615..fea57365 100644 --- a/admin_group_delete.php +++ b/admin_group_delete.php @@ -35,13 +35,13 @@ if (!ttAccessAllowed('administer_site')) { header('Location: access_denied.php'); exit(); } -// End of access checks. - $group_id = (int)$request->getParameter('id'); - -$admin = new ttAdmin(); -$group_details = $admin->getGroupDetails($group_id); -$group_name = $group_details['group_name']; +$group_details = ttAdmin::getGroupDetails($group_id); +if (!($group_id && $group_details)) { + header('Location: access_denied.php'); + exit(); +} +// End of access checks. $form = new Form('groupForm'); $form->addInput(array('type'=>'hidden','name'=>'id','value'=>$group_id)); @@ -50,8 +50,7 @@ $form->addInput(array('type'=>'submit','name'=>'btn_cancel','value'=>$i18n->get( if ($request->isPost()) { if ($request->getParameter('btn_delete')) { - $result = $admin->markGroupDeleted($group_id); - if ($result) { + if (ttAdmin::markGroupDeleted($group_id)) { header('Location: admin_groups.php'); exit(); } else @@ -64,7 +63,7 @@ if ($request->isPost()) { } } // isPost -$smarty->assign('group_to_delete', $group_name); +$smarty->assign('group_to_delete', $group_details['group_name']); $smarty->assign('forms', array($form->getName()=>$form->toArray())); $smarty->assign('title', $i18n->get('title.delete_group')); $smarty->assign('content_page_name', 'admin_group_delete.tpl');