A few fixes to export-import.
[timetracker.git] / notifications.php
index 75b0dbb..4205dff 100644 (file)
@@ -31,14 +31,14 @@ import('form.Form');
 import('ttTeamHelper');
 
 // Access check.
-if (!ttAccessCheck(right_manage_team)) {
+if (!ttAccessAllowed('manage_advanced_settings') || !$user->isPluginEnabled('no')) {
   header('Location: access_denied.php');
   exit();
 }
 
 $form = new Form('notificationsForm');
 
-if ($request->getMethod() == 'POST') {
+if ($request->isPost()) {
   if ($request->getParameter('btn_add')) {
     // The Add button clicked. Redirect to notification_add.php page.
     header('Location: notification_add.php');