X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/timetracker.git/blobdiff_plain/5f64df1308fd641565631e6e38d282432f5e6250..5970acff895c6773c700d7e218ad4a932040789d:/cf_custom_field_add.php diff --git a/cf_custom_field_add.php b/cf_custom_field_add.php index 30c82a5a..922d83b7 100644 --- a/cf_custom_field_add.php +++ b/cf_custom_field_add.php @@ -30,11 +30,15 @@ require_once('initialize.php'); require_once('plugins/CustomFields.class.php'); import('form.Form'); -// Access check. -if (!ttAccessAllowed('manage_custom_fields') || !$user->isPluginEnabled('cf')) { +// Access checks. +if (!ttAccessAllowed('manage_custom_fields')) { header('Location: access_denied.php'); exit(); } +if (!$user->isPluginEnabled('cf')) { + header('Location: feature_disabled.php'); + exit(); +} if ($request->isPost()) { $cl_field_name = trim($request->getParameter('name'));