Commit 19d35bd00a49028c00fb6281de71f34e97b01d0d
1 parent
db472276
fixed add button problem
git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@1824 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
2 additions
and
2 deletions
presentation/lookAndFeel/knowledgeTree/foldermanagement/editBL.php
| ... | ... | @@ -75,7 +75,7 @@ if (checkSession()) { |
| 75 | 75 | //user attempted to edit the folder collaboration process but could not because there is |
| 76 | 76 | //a document currently in this process |
| 77 | 77 | $oPatternCustom = & new PatternCustom(); |
| 78 | - $oPatternCustom->setHtml(getPage($fFolderID)); | |
| 78 | + $oPatternCustom->setHtml(getPage($fFolderID, true)); | |
| 79 | 79 | $main->setErrorMessage("You cannot edit this folder collaboration process as a document is currently undergoing this collaboration process"); |
| 80 | 80 | $main->setCentralPayload($oPatternCustom); |
| 81 | 81 | $main->setHasRequiredFields(true); |
| ... | ... | @@ -85,7 +85,7 @@ if (checkSession()) { |
| 85 | 85 | //user attempted to delete the folder collaboration process but could not because there is |
| 86 | 86 | //a document currently in this process |
| 87 | 87 | $oPatternCustom = & new PatternCustom(); |
| 88 | - $oPatternCustom->setHtml(getPage($fFolderID)); | |
| 88 | + $oPatternCustom->setHtml(getPage($fFolderID, true)); | |
| 89 | 89 | $main->setErrorMessage("You cannot delete this folder collaboration process as a document is currently undergoing this collaboration process"); |
| 90 | 90 | $main->setCentralPayload($oPatternCustom); |
| 91 | 91 | $main->setHasRequiredFields(true); | ... | ... |