From 19d35bd00a49028c00fb6281de71f34e97b01d0d Mon Sep 17 00:00:00 2001 From: rob Date: Tue, 13 May 2003 15:57:11 +0000 Subject: [PATCH] fixed add button problem --- presentation/lookAndFeel/knowledgeTree/foldermanagement/editBL.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/presentation/lookAndFeel/knowledgeTree/foldermanagement/editBL.php b/presentation/lookAndFeel/knowledgeTree/foldermanagement/editBL.php index fe50fa4..7e50dca 100644 --- a/presentation/lookAndFeel/knowledgeTree/foldermanagement/editBL.php +++ b/presentation/lookAndFeel/knowledgeTree/foldermanagement/editBL.php @@ -75,7 +75,7 @@ if (checkSession()) { //user attempted to edit the folder collaboration process but could not because there is //a document currently in this process $oPatternCustom = & new PatternCustom(); - $oPatternCustom->setHtml(getPage($fFolderID)); + $oPatternCustom->setHtml(getPage($fFolderID, true)); $main->setErrorMessage("You cannot edit this folder collaboration process as a document is currently undergoing this collaboration process"); $main->setCentralPayload($oPatternCustom); $main->setHasRequiredFields(true); @@ -85,7 +85,7 @@ if (checkSession()) { //user attempted to delete the folder collaboration process but could not because there is //a document currently in this process $oPatternCustom = & new PatternCustom(); - $oPatternCustom->setHtml(getPage($fFolderID)); + $oPatternCustom->setHtml(getPage($fFolderID, true)); $main->setErrorMessage("You cannot delete this folder collaboration process as a document is currently undergoing this collaboration process"); $main->setCentralPayload($oPatternCustom); $main->setHasRequiredFields(true); -- libgit2 0.21.4