X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=notification_add.php;h=e30970afac5253498bb7053d7d147e3f4a4c520a;hb=7797eda9fb04c217a813db88e00bb9ee541eabbb;hp=6d0e4d31a2d894affbbae46f3ea0673f7385bb2a;hpb=fd0872d9e582113346fa1e93557f370286c5c9f2;p=timetracker.git diff --git a/notification_add.php b/notification_add.php index 6d0e4d31..e30970af 100644 --- a/notification_add.php +++ b/notification_add.php @@ -33,11 +33,15 @@ import('form.Form'); import('ttFavReportHelper'); import('ttNotificationHelper'); -// 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(); +} $fav_reports = ttFavReportHelper::getReports($user->id); @@ -82,7 +86,7 @@ if ($request->isPost()) { $next = tdCron::getNextOccurrence($cl_cron_spec, mktime()); if (ttNotificationHelper::insert(array( - 'team_id' => $user->team_id, + 'group_id' => $user->group_id, 'cron_spec' => $cl_cron_spec, 'next' => $next, 'report_id' => $cl_fav_report,