Commit d75bd7c5ba2d56089e4ab09ce32164abc67592bb

Authored by Michael Joseph
1 parent ef915c12

corrected getList call


git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@1424 c91229c3-7414-0410-bfa2-8a42b809f60b
presentation/lookAndFeel/knowledgeTree/documentmanagement/viewBL.php
... ... @@ -84,7 +84,7 @@ if (checkSession()) {
84 84 $aFolderCollaboration = FolderCollaboration::getList("WHERE folder_id = " . $oDocument->getFolderID());
85 85 if (count($aFolderCollaboration) > 0) {
86 86 //if the the folder has collaboration steps set up
87   - $aFolderUserRoles = FolderUserRole::getList("WHERE document_id = " . $fDocumentID);
  87 + $aFolderUserRoles = FolderUserRole::getList("document_id = " . $fDocumentID);
88 88 if (count($aFolderCollaboration) == count($aFolderUserRoles)) {
89 89 //if all the roles have been assigned we can start the collaboration process
90 90 $oDocument->beginCollaborationProcess();
... ...