diff --git a/presentation/lookAndFeel/knowledgeTree/documentmanagement/viewUI.inc b/presentation/lookAndFeel/knowledgeTree/documentmanagement/viewUI.inc index 04d9d7b..9e9445c 100644 --- a/presentation/lookAndFeel/knowledgeTree/documentmanagement/viewUI.inc +++ b/presentation/lookAndFeel/knowledgeTree/documentmanagement/viewUI.inc @@ -423,6 +423,10 @@ function displayCheckInOutButton($oDocument, $bEdit) { } else { $sAction = "checkOutDocument"; $sImageName = "checkout"; + // #3481 if the document is published don't allow checkout + if (DocumentCollaboration::documentIsPublished($oDocument->getID())) { + $sDisabledText = "This document has been published and cannot be checked out"; + } } if (!$bEdit) { $sDisabledText = "You do not have write access to this document";