From 4d7fb2be261d32539d9b2a32e540a6eac05a05e9 Mon Sep 17 00:00:00 2001 From: Michael Joseph Date: Tue, 9 Sep 2003 15:25:51 +0000 Subject: [PATCH] (#2994) removed urlencoding --- presentation/lookAndFeel/knowledgeTree/discussions/addCommentBL.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/presentation/lookAndFeel/knowledgeTree/discussions/addCommentBL.php b/presentation/lookAndFeel/knowledgeTree/discussions/addCommentBL.php index 5518e5d..8d30f3a 100644 --- a/presentation/lookAndFeel/knowledgeTree/discussions/addCommentBL.php +++ b/presentation/lookAndFeel/knowledgeTree/discussions/addCommentBL.php @@ -76,7 +76,7 @@ if(checkSession()) { if ($iThreadID > 0){ // Create the new comment - $oComment = & new DiscussionComment(urlencode($_POST["NewComment"]),$_POST["NewCommentSubject"],$_SESSION["userID"],$iDocumentID); + $oComment = & new DiscussionComment($_POST["NewComment"], $_POST["NewCommentSubject"],$_SESSION["userID"],$iDocumentID); $oComment->setThreadID($iThreadID); $oComment->create(); -- libgit2 0.21.4