Commit c92d110c158f993ef068157db31e29433fbcce71
1 parent
ee4c0cfa
corrected DocumentCollaboration refactor
git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@1868 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
2 additions
and
1 deletions
presentation/lookAndFeel/knowledgeTree/documentmanagement/viewBL.php
| ... | ... | @@ -32,6 +32,7 @@ require_once("$default->fileSystemRoot/lib/documentmanagement/PhysicalDocumentMa |
| 32 | 32 | require_once("$default->fileSystemRoot/lib/documentmanagement/DocumentTransaction.inc"); |
| 33 | 33 | require_once("$default->fileSystemRoot/lib/documentmanagement/Document.inc"); |
| 34 | 34 | require_once("$default->fileSystemRoot/lib/documentmanagement/DocumentCollaboration.inc"); |
| 35 | +require_once("$default->fileSystemRoot/lib/documentmanagement/ArchiveSettings.inc"); | |
| 35 | 36 | |
| 36 | 37 | require_once("$default->fileSystemRoot/lib/foldermanagement/FolderCollaboration.inc"); |
| 37 | 38 | require_once("$default->fileSystemRoot/lib/foldermanagement/FolderUserRole.inc"); |
| ... | ... | @@ -178,7 +179,7 @@ if (checkSession()) { |
| 178 | 179 | $oDocumentTransaction = & new DocumentTransaction($fDocumentID, "Document sent for web publishing", UPDATE); |
| 179 | 180 | $oDocumentTransaction->create(); |
| 180 | 181 | $oDocument = Document::get($fDocumentID); |
| 181 | - Document::notifyWebMaster($fDocumentID, $fComment); | |
| 182 | + DocumentCollaboration::notifyWebMaster($fDocumentID, $fComment); | |
| 182 | 183 | $oPatternCustom = & new PatternCustom(); |
| 183 | 184 | $oPatternCustom->setHtml(getEditPage($oDocument)); |
| 184 | 185 | $main->setCentralPayload($oPatternCustom); | ... | ... |