Fixed approve_all_reports right assignment and check.
[timetracker.git] / cf_custom_fields.php
index 2b34fb7..6de626c 100644 (file)
@@ -30,11 +30,16 @@ 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();
+}
+// End of access checks.
 
 $form = new Form('customFieldsForm');