minor ui change
This commit is contained in:
parent
0a76a7785b
commit
93eb607e35
2 changed files with 8 additions and 9 deletions
|
@ -94,14 +94,6 @@ echo Bootstrap::formInputText(array(
|
|||
'value' => ''
|
||||
));
|
||||
|
||||
echo Bootstrap::formSelect(array(
|
||||
'name' => 'role',
|
||||
'label' => $L->g('Role'),
|
||||
'options' => array('author' => $L->g('Author'), 'editor' => $L->g('Editor'), 'admin' => $L->g('Administrator')),
|
||||
'selected' => 'Author',
|
||||
'tip' => $L->g('author-can-write-and-edit-their-own-content')
|
||||
));
|
||||
|
||||
echo Bootstrap::formInputText(array(
|
||||
'id' => 'email',
|
||||
'name' => 'email',
|
||||
|
@ -109,4 +101,12 @@ echo Bootstrap::formInputText(array(
|
|||
'label' => $L->g('Email'),
|
||||
'value' => ''
|
||||
));
|
||||
|
||||
echo Bootstrap::formSelect(array(
|
||||
'name' => 'role',
|
||||
'label' => $L->g('Role'),
|
||||
'options' => array('author' => $L->g('Author'), 'editor' => $L->g('Editor'), 'admin' => $L->g('Administrator')),
|
||||
'selected' => 'Author',
|
||||
'tip' => $L->g('author-can-write-and-edit-their-own-content')
|
||||
));
|
||||
?>
|
|
@ -294,7 +294,6 @@
|
|||
'name' => 'nickname',
|
||||
'label' => $L->g('Nickname'),
|
||||
'value' => $user->nickname(),
|
||||
'tip' => $L->g('The nickname is almost used in the themes to display the author of the content'),
|
||||
'data' => array('save' => 'true')
|
||||
));
|
||||
|
||||
|
|
Loading…
Reference in a new issue