- getAllUsers() and getAllGroups() are now methods of LetoDMЅ_DMS

This commit is contained in:
steinm 2010-11-17 07:27:12 +00:00
parent 181c2c7e50
commit 70762ca49e

View File

@ -78,7 +78,7 @@ function checkForm()
</script>
<?php
$allUsers = getAllUsers();
$allUsers = $dms->getAllUsers();
UI::contentHeading(getMLText("edit_folder_access"));
UI::contentContainerStart();
@ -210,7 +210,7 @@ foreach ($allUsers as $userObj) {
<select name="groupid">
<option value="-1"><?php printMLText("select_one");?>
<?php
$allGroups = getAllGroups();
$allGroups = $dms->getAllGroups();
foreach ($allGroups as $groupObj) {
print "<option value=\"".$groupObj->getID()."\">" . $groupObj->getName() . "\n";
}