X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/timetracker.git/blobdiff_plain/e4c40a490a8c9477cab1d41b786aa7aaa5e930d6..2ffa361a7610cbd1334754da314e4783226df689:/cf_dropdown_options.php diff --git a/cf_dropdown_options.php b/cf_dropdown_options.php index 3ee5294e..02f59f56 100644 --- a/cf_dropdown_options.php +++ b/cf_dropdown_options.php @@ -39,13 +39,13 @@ if (!ttAccessAllowed('manage_custom_fields') || !$user->isPluginEnabled('cf')) { $field_id = $request->getParameter('field_id'); $options = CustomFields::getOptions($field_id); if (false === $options) - $err->add($i18n->getKey('error.db')); + $err->add($i18n->get('error.db')); $form = new Form('dropdownOptionsForm'); $smarty->assign('forms', array($form->getName()=>$form->toArray())); $smarty->assign('field_id', $field_id); $smarty->assign('options', $options); -$smarty->assign('title', $i18n->getKey('title.cf_dropdown_options')); +$smarty->assign('title', $i18n->get('title.cf_dropdown_options')); $smarty->assign('content_page_name', 'cf_dropdown_options.tpl'); $smarty->display('index.tpl');