Commit c63820a4f2dc7dd569767793ca424ec0da880f6c
1 parent
3f247daf
KTS-3639
"Workflows currently do not contain an action that restricts downloading of a document." Fixed. Changed the download action type from documentinfo to documentaction. Committed by: Megan Watson Reviewed by: Conrad Vermeulen git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@9229 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
1 additions
and
1 deletions
plugins/ktcore/KTCorePlugin.php
| ... | ... | @@ -53,7 +53,7 @@ class KTCorePlugin extends KTPlugin { |
| 53 | 53 | |
| 54 | 54 | function setup() { |
| 55 | 55 | $this->registerAction('documentinfo', 'KTDocumentDetailsAction', 'ktcore.actions.document.displaydetails', 'KTDocumentActions.php'); |
| 56 | - $this->registerAction('documentinfo', 'KTDocumentViewAction', 'ktcore.actions.document.view', 'KTDocumentActions.php'); | |
| 56 | + $this->registerAction('documentaction', 'KTDocumentViewAction', 'ktcore.actions.document.view', 'KTDocumentActions.php'); | |
| 57 | 57 | $this->registerAction('documentaction', 'KTOwnershipChangeAction', 'ktcore.actions.document.ownershipchange', 'KTDocumentActions.php'); |
| 58 | 58 | $this->registerAction('documentaction', 'KTDocumentCheckOutAction', 'ktcore.actions.document.checkout', 'KTDocumentActions.php'); |
| 59 | 59 | $this->registerAction('documentaction', 'KTDocumentCancelCheckOutAction', 'ktcore.actions.document.cancelcheckout', 'KTDocumentActions.php'); | ... | ... |