mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-06-01 22:47:19 +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 .= ">".htmlspecialchars($curuser->getLogin()." - ".$curuser->getFullName())."</option>";
|
||||||
}
|
}
|
||||||
$content .= "</select>";
|
$content .= "</select>";
|
||||||
|
} else {
|
||||||
|
$content .= getMLText('no_users');
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case SeedDMS_Core_AttributeDefinition::type_group:
|
case SeedDMS_Core_AttributeDefinition::type_group:
|
||||||
|
@ -1571,6 +1573,8 @@ $(document).ready(function() {
|
||||||
$content .= ">".htmlspecialchars($curgroup->getName())."</option>";
|
$content .= ">".htmlspecialchars($curgroup->getName())."</option>";
|
||||||
}
|
}
|
||||||
$content .= "</select>";
|
$content .= "</select>";
|
||||||
|
} else {
|
||||||
|
$content .= getMLText('no_groups');
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user