X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/timetracker.git/blobdiff_plain/3a44195498f8f70c67f7122909c7977cad0351f0..98dfff814b103b57c450173804f92a255909a3ba:/cf_custom_field_add.php diff --git a/cf_custom_field_add.php b/cf_custom_field_add.php index 922d83b7..8227d254 100644 --- a/cf_custom_field_add.php +++ b/cf_custom_field_add.php @@ -39,6 +39,12 @@ 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(); +} if ($request->isPost()) { $cl_field_name = trim($request->getParameter('name'));