X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=cf_custom_field_add.php;h=2eba5b56f404d557111a8f71c73f47cccd3846ca;hb=1c40fb09e97ff643c80e9b96106d891e6fdbde1b;hp=d6766ef2b6c2f9f30d865c6202934cf5004bf8dc;hpb=a7ba11adfecf6cb906749efe5abce688363aef07;p=timetracker.git diff --git a/cf_custom_field_add.php b/cf_custom_field_add.php index d6766ef2..2eba5b56 100644 --- a/cf_custom_field_add.php +++ b/cf_custom_field_add.php @@ -31,7 +31,7 @@ require_once('plugins/CustomFields.class.php'); import('form.Form'); // Access check. -if (!ttAccessCheck(right_manage_team)) { +if (!ttAccessCheck(right_manage_team) || !$user->isPluginEnabled('cf')) { header('Location: access_denied.php'); exit(); } @@ -50,22 +50,22 @@ $form->addInput(array('type'=>'combobox','name'=>'type', 'data'=>array(CustomFields::TYPE_TEXT=>$i18n->getKey('label.type_text'), CustomFields::TYPE_DROPDOWN=>$i18n->getKey('label.type_dropdown')) )); -$form->addInput(array('type'=>'checkbox','name'=>'required','data'=>1,'value'=>'0')); +$form->addInput(array('type'=>'checkbox','name'=>'required')); $form->addInput(array('type'=>'submit','name'=>'btn_add','value'=>$i18n->getKey('button.add'))); if ($request->isPost()) { // Validate user input. - if (!ttValidString($cl_field_name)) $errors->add($i18n->getKey('error.field'), $i18n->getKey('label.thing_name')); + if (!ttValidString($cl_field_name)) $err->add($i18n->getKey('error.field'), $i18n->getKey('label.thing_name')); - if ($errors->no()) { + if ($err->no()) { $res = CustomFields::insertField($cl_field_name, $cl_field_type, $cl_required); if ($res) { header('Location: cf_custom_fields.php'); exit(); } else - $errors->add($i18n->getKey('error.db')); + $err->add($i18n->getKey('error.db')); } -} // POST +} // isPost $smarty->assign('forms', array($form->getName()=>$form->toArray())); $smarty->assign('onload', 'onLoad="document.fieldForm.name.focus()"');