Commit b6c9c97bb7da7ab6935e6ff8b2397a3a5330d154
1 parent
c739a35f
(#2994) removed urlencoding
git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@2703 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
1 additions
and
1 deletions
presentation/lookAndFeel/knowledgeTree/discussions/addCommentBL.php
| ... | ... | @@ -76,7 +76,7 @@ if(checkSession()) { |
| 76 | 76 | |
| 77 | 77 | if ($iThreadID > 0){ |
| 78 | 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 | 80 | $oComment->setThreadID($iThreadID); |
| 81 | 81 | $oComment->create(); |
| 82 | 82 | ... | ... |