Commit 4d7fb2be261d32539d9b2a32e540a6eac05a05e9

Authored by Michael Joseph
1 parent e25186a1

(#2994) removed urlencoding


git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@2703 c91229c3-7414-0410-bfa2-8a42b809f60b
presentation/lookAndFeel/knowledgeTree/discussions/addCommentBL.php
@@ -76,7 +76,7 @@ if(checkSession()) { @@ -76,7 +76,7 @@ if(checkSession()) {
76 76
77 if ($iThreadID > 0){ 77 if ($iThreadID > 0){
78 // Create the new comment 78 // Create the new comment
79 - $oComment = & new DiscussionComment(urlencode($_POST["NewComment"]),$_POST["NewCommentSubject"],$_SESSION["userID"],$iDocumentID); 79 + $oComment = & new DiscussionComment($_POST["NewComment"], $_POST["NewCommentSubject"],$_SESSION["userID"],$iDocumentID);
80 $oComment->setThreadID($iThreadID); 80 $oComment->setThreadID($iThreadID);
81 $oComment->create(); 81 $oComment->create();
82 82