X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=cf_custom_field_add.php;h=e8de69e7e1bd0b9e4bdf370962c0959e64f618bf;hb=db25f950841ee874795d4b9605f8ae2347aaf4f1;hp=e4a919eb595883c52b0a7118a244856020752351;hpb=770d560338b34e0a869c78778d0cd838905fb192;p=timetracker.git diff --git a/cf_custom_field_add.php b/cf_custom_field_add.php index e4a919eb..e8de69e7 100644 --- a/cf_custom_field_add.php +++ b/cf_custom_field_add.php @@ -41,7 +41,7 @@ if (!$user->isPluginEnabled('cf')) { } $fields = CustomFields::getFields(); // Deny access when max number of custom fields is already set. -if (count($fields) >= 1) { +if (count($fields) >= 1 && !isTrue('CF_DEBUG')) { header('Location: access_denied.php'); exit(); } @@ -59,8 +59,8 @@ if ($request->isPost()) { $form = new Form('fieldForm'); $form->addInput(array('type'=>'text','maxlength'=>'100','name'=>'name','value'=>'')); $form->addInput(array('type'=>'combobox','name'=>'entity', - 'data'=>array(CustomFields::ENTITY_TIME=>$i18n->get('dropdown.time'), - CustomFields::ENTITY_USER=>$i18n->get('dropdown.user')) + 'data'=>array(CustomFields::ENTITY_TIME=>$i18n->get('entity.time'), + CustomFields::ENTITY_USER=>$i18n->get('entity.user')) )); $form->addInput(array('type'=>'combobox','name'=>'type', 'data'=>array(CustomFields::TYPE_TEXT=>$i18n->get('label.type_text'),