]> wagnertech.de Git - timetracker.git/blobdiff - cf_custom_field_add.php
Introduced feature_disabled.php for better error description.
[timetracker.git] / cf_custom_field_add.php
index 30c82a5a4ecba117fa5e88248003846c76207a9f..922d83b7ca6e3b2f7b95a84e5f136bf3e3c4fa97 100644 (file)
@@ -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'));