]> wagnertech.de Git - timetracker.git/blobdiff - cf_custom_field_add.php
Added users to new import.
[timetracker.git] / cf_custom_field_add.php
index 30c82a5a4ecba117fa5e88248003846c76207a9f..8227d254136a2af342946f435758b3b992fafa99 100644 (file)
@@ -30,8 +30,18 @@ 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();
 }