mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-02-06 07:04:57 +00:00
put full name into first line of user selector
makes it possible to search for it
This commit is contained in:
parent
d339aad6ae
commit
9e239a3c65
|
@ -542,7 +542,7 @@ $(document).ready( function() {
|
|||
$options[] = array("-1", getMLText("choose_user"));
|
||||
$options[] = array("0", getMLText("add_user"));
|
||||
foreach ($users as $currUser) {
|
||||
$options[] = array($currUser->getID(), htmlspecialchars($currUser->getLogin()), $seluser && $currUser->getID()==$seluser->getID(), array(array('data-subtitle', htmlspecialchars($currUser->getFullName()))));
|
||||
$options[] = array($currUser->getID(), htmlspecialchars($currUser->getLogin().' - '.$currUser->getFullName()), $seluser && $currUser->getID()==$seluser->getID(), array(array('data-subtitle', htmlspecialchars($currUser->getEmail()))));
|
||||
}
|
||||
$this->formField(
|
||||
null, //getMLText("selection"),
|
||||
|
|
Loading…
Reference in New Issue
Block a user