X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=cf_custom_field_add.php;h=c0dc255f6c1b38711cf3a3514a93f10e39781258;hb=56fd29cc5a2b6a67ed24b19d0d4213a6458a9723;hp=922d83b7ca6e3b2f7b95a84e5f136bf3e3c4fa97;hpb=a8a191541d6f05b08bd8331bdf409af5abfac896;p=timetracker.git diff --git a/cf_custom_field_add.php b/cf_custom_field_add.php index 922d83b7..c0dc255f 100644 --- a/cf_custom_field_add.php +++ b/cf_custom_field_add.php @@ -39,6 +39,13 @@ 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'));