X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=cf_custom_field_add.php;h=c0dc255f6c1b38711cf3a3514a93f10e39781258;hb=87a40bf7dc910c008aa6aadf8882b070ad120c39;hp=30c82a5a4ecba117fa5e88248003846c76207a9f;hpb=5f64df1308fd641565631e6e38d282432f5e6250;p=timetracker.git diff --git a/cf_custom_field_add.php b/cf_custom_field_add.php index 30c82a5a..c0dc255f 100644 --- a/cf_custom_field_add.php +++ b/cf_custom_field_add.php @@ -30,11 +30,22 @@ 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(); +} +$fields = CustomFields::getFields(); +// Deny access when max number of custom fields is already set. +if (count($fields) >= 1) { + header('Location: access_denied.php'); + exit(); +} +// End of access checks. if ($request->isPost()) { $cl_field_name = trim($request->getParameter('name'));