X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=notification_delete.php;h=c1f0785e2473246714cb6f91bd2508197cdb1e22;hb=f22a586b11af9c617fdc4241d3ffa0344d4d6a50;hp=b18ac614fb6c5e2061127e889f9299365016024a;hpb=4dcb88a76a3de466ee6116ae0852f53ba2b259a5;p=timetracker.git diff --git a/notification_delete.php b/notification_delete.php index b18ac614..c1f0785e 100644 --- a/notification_delete.php +++ b/notification_delete.php @@ -39,9 +39,18 @@ if (!$user->isPluginEnabled('no')) { header('Location: feature_disabled.php'); exit(); } - +if (!$user->exists()) { + header('Location: access_denied.php'); // No users in subgroup. + exit(); +} $cl_notification_id = (int)$request->getParameter('id'); $notification = ttNotificationHelper::get($cl_notification_id); +if (!$notification) { + header('Location: access_denied.php'); // Wrong notification id. + exit(); +} +// End of access checks. + $notification_to_delete = $notification['name']; $form = new Form('notificationDeleteForm'); @@ -51,12 +60,9 @@ $form->addInput(array('type'=>'submit','name'=>'btn_cancel','value'=>$i18n->get( if ($request->isPost()) { if ($request->getParameter('btn_delete')) { - if(ttNotificationHelper::get($cl_notification_id)) { - if (ttNotificationHelper::delete($cl_notification_id)) { - header('Location: notifications.php'); - exit(); - } else - $err->add($i18n->get('error.db')); + if (ttNotificationHelper::delete($cl_notification_id)) { + header('Location: notifications.php'); + exit(); } else $err->add($i18n->get('error.db')); } elseif ($request->getParameter('btn_cancel')) {