From d75bd7c5ba2d56089e4ab09ce32164abc67592bb Mon Sep 17 00:00:00 2001 From: Michael Joseph Date: Thu, 6 Mar 2003 10:05:32 +0000 Subject: [PATCH] corrected getList call --- presentation/lookAndFeel/knowledgeTree/documentmanagement/viewBL.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/presentation/lookAndFeel/knowledgeTree/documentmanagement/viewBL.php b/presentation/lookAndFeel/knowledgeTree/documentmanagement/viewBL.php index d9afa9b..e7e8176 100644 --- a/presentation/lookAndFeel/knowledgeTree/documentmanagement/viewBL.php +++ b/presentation/lookAndFeel/knowledgeTree/documentmanagement/viewBL.php @@ -84,7 +84,7 @@ if (checkSession()) { $aFolderCollaboration = FolderCollaboration::getList("WHERE folder_id = " . $oDocument->getFolderID()); if (count($aFolderCollaboration) > 0) { //if the the folder has collaboration steps set up - $aFolderUserRoles = FolderUserRole::getList("WHERE document_id = " . $fDocumentID); + $aFolderUserRoles = FolderUserRole::getList("document_id = " . $fDocumentID); if (count($aFolderCollaboration) == count($aFolderUserRoles)) { //if all the roles have been assigned we can start the collaboration process $oDocument->beginCollaborationProcess(); -- libgit2 0.21.4