mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-05-11 12:11:19 +00:00
put fullname in data-subtitle of option tag
This commit is contained in:
parent
893e84d442
commit
966a566937
|
@ -472,7 +472,7 @@ $(document).ready( function() {
|
|||
<option value="0"><?php echo getMLText("add_user")?>
|
||||
<?php
|
||||
foreach ($users as $currUser) {
|
||||
print "<option value=\"".$currUser->getID()."\" ".($seluser && $currUser->getID()==$seluser->getID() ? 'selected' : '').">" . htmlspecialchars($currUser->getLogin() . " - ". $currUser->getFullName());
|
||||
print "<option value=\"".$currUser->getID()."\" ".($seluser && $currUser->getID()==$seluser->getID() ? 'selected' : '')." data-subtitle=\"".htmlspecialchars($currUser->getFullName())."\">" . htmlspecialchars($currUser->getLogin());
|
||||
}
|
||||
?>
|
||||
</select>
|
||||
|
|
Loading…
Reference in New Issue
Block a user