minor ui change

This commit is contained in:
Diego Najar 2022-02-22 14:40:08 +01:00
parent 0a76a7785b
commit 93eb607e35
2 changed files with 8 additions and 9 deletions

View file

@ -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')
));
?>

View file

@ -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')
));