X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=notifications.php;h=23400beb428aedb94687f0b25d24d84fb4f1ff6f;hb=2908e17af44b65d6a97e299edd03293ddd802802;hp=4205dffaf66b28ea52c8122da23d64ff51d8542f;hpb=b401022733a9645ed701522585b2d57db936f5cc;p=timetracker.git diff --git a/notifications.php b/notifications.php index 4205dffa..23400beb 100644 --- a/notifications.php +++ b/notifications.php @@ -30,11 +30,15 @@ require_once('initialize.php'); import('form.Form'); import('ttTeamHelper'); -// Access check. -if (!ttAccessAllowed('manage_advanced_settings') || !$user->isPluginEnabled('no')) { +// Access checks. +if (!ttAccessAllowed('manage_advanced_settings')) { header('Location: access_denied.php'); exit(); } +if (!$user->isPluginEnabled('no')) { + header('Location: feature_disabled.php'); + exit(); +} $form = new Form('notificationsForm'); @@ -45,12 +49,12 @@ if ($request->isPost()) { exit(); } } else { - $form->addInput(array('type'=>'submit','name'=>'btn_add','value'=>$i18n->getKey('button.add'))); - $notifications = ttTeamHelper::getNotifications($user->team_id); + $form->addInput(array('type'=>'submit','name'=>'btn_add','value'=>$i18n->get('button.add'))); + $notifications = ttTeamHelper::getNotifications($user->group_id); } $smarty->assign('forms', array($form->getName()=>$form->toArray())); $smarty->assign('notifications', $notifications); -$smarty->assign('title', $i18n->getKey('title.notifications')); +$smarty->assign('title', $i18n->get('title.notifications')); $smarty->assign('content_page_name', 'notifications.tpl'); $smarty->display('index.tpl');