make sure only users allowed to be a revcipient are saved

This commit is contained in:
Uwe Steinmann 2016-10-27 14:28:54 +02:00
parent 94dbc6b240
commit f9d2d9dc48

View File

@ -60,7 +60,7 @@ $folder = $document->getFolder();
// Retrieve a list of all users and groups that have read rights.
// Afterwards, reorganize them in two arrays with its key being the
// userid or groupid
$docAccess = $document->getReadAccessList(true, true);
$docAccess = $document->getReadAccessList($settings->_enableAdminReceipt, $settings->_enableOwnerReceipt);
$accessIndex = array("i"=>array(), "g"=>array());
foreach ($docAccess["users"] as $i=>$da) {
$accessIndex["i"][$da->getID()] = $da;