mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-05-14 05:31:42 +00:00
do not preset user selection for access rights
This commit is contained in:
parent
51c9236c7c
commit
bf7cd09374
|
@ -193,7 +193,7 @@ $(document).ready(function() {
|
||||||
$options[] = array(-1, getMLText('select_one'));
|
$options[] = array(-1, getMLText('select_one'));
|
||||||
foreach ($allUsers as $currUser) {
|
foreach ($allUsers as $currUser) {
|
||||||
if (!$currUser->isGuest())
|
if (!$currUser->isGuest())
|
||||||
$options[] = array($currUser->getID(), htmlspecialchars($currUser->getLogin()), ($currUser->getID()==$user->getID()), array(array('data-subtitle', htmlspecialchars($currUser->getFullName()))));
|
$options[] = array($currUser->getID(), htmlspecialchars($currUser->getLogin()), false, array(array('data-subtitle', htmlspecialchars($currUser->getFullName()))));
|
||||||
}
|
}
|
||||||
$this->formField(
|
$this->formField(
|
||||||
getMLText("user"),
|
getMLText("user"),
|
||||||
|
|
Loading…
Reference in New Issue
Block a user