mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-05-31 05:57:34 +00:00
out message if no groups/users are available
This commit is contained in:
parent
6e665abcf4
commit
b15c47117e
|
@ -1553,6 +1553,8 @@ $(document).ready(function() {
|
|||
$content .= ">".htmlspecialchars($curuser->getLogin()." - ".$curuser->getFullName())."</option>";
|
||||
}
|
||||
$content .= "</select>";
|
||||
} else {
|
||||
$content .= getMLText('no_users');
|
||||
}
|
||||
break;
|
||||
case SeedDMS_Core_AttributeDefinition::type_group:
|
||||
|
@ -1571,6 +1573,8 @@ $(document).ready(function() {
|
|||
$content .= ">".htmlspecialchars($curgroup->getName())."</option>";
|
||||
}
|
||||
$content .= "</select>";
|
||||
} else {
|
||||
$content .= getMLText('no_groups');
|
||||
}
|
||||
break;
|
||||
default:
|
||||
|
|
Loading…
Reference in New Issue
Block a user