X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=admin_team_add.php;h=65031efdaea07969d9e741948577cecc7fcda1c5;hb=b9026f8ab6535160feb9d4d1caf95495f5b159be;hp=6d5bc84f96ff8051019f4344a3eb5508500a9a39;hpb=5f64df1308fd641565631e6e38d282432f5e6250;p=timetracker.git diff --git a/admin_team_add.php b/admin_team_add.php index 6d5bc84f..65031efd 100644 --- a/admin_team_add.php +++ b/admin_team_add.php @@ -81,9 +81,10 @@ $form->addInput(array('type'=>'text','maxlength'=>'100','name'=>'manager_email', $form->addInput(array('type'=>'submit','name'=>'btn_submit','value'=>$i18n->get('button.submit'))); if ($request->isPost()) { + /* * Note: creating a group by admin is pretty much the same as self-registration, - * except that created_by gields for group and user must be set to admin account. + * except that created_by fields for group and user must be set to admin account. * Therefore, we'll reuse ttRegistrator instance to create a group here * and override created_by fields using ttRegistrator::setCreatedBy() function. */ @@ -115,5 +116,5 @@ $smarty->assign('auth_external', $auth->isPasswordExternal()); $smarty->assign('forms', array($form->getName()=>$form->toArray())); $smarty->assign('onload', 'onLoad="document.teamForm.team.focus()"'); $smarty->assign('content_page_name', 'admin_team_add.tpl'); -$smarty->assign('title', $i18n->get('title.create_team')); +$smarty->assign('title', $i18n->get('title.create_group')); $smarty->display('index.tpl');