diff --git a/presentation/lookAndFeel/knowledgeTree/discussions/viewDiscussionUI.inc b/presentation/lookAndFeel/knowledgeTree/discussions/viewDiscussionUI.inc
index 9557839..f3b8b51 100644
--- a/presentation/lookAndFeel/knowledgeTree/discussions/viewDiscussionUI.inc
+++ b/presentation/lookAndFeel/knowledgeTree/discussions/viewDiscussionUI.inc
@@ -154,27 +154,21 @@ function getCommentBody($oComment, $iDocumentID, $oUser) {
$sBody = "";
$numChars = 80; // number of chars in a line
+
// Used for wrapping text that may be too long on one any line
for ($i=0; $i <= sizeof($aBody) ;$i++) {
- if (strlen($aBody[$i]) >$numChars){
- $loop = (strlen($aBody[$i]) - (strlen($aBody[$i])) % $numChars)/$numChars +1;
-
- $j=$numChars;
- for($j=0; $j < $loop; $j++ ) {
- $sBody .= "
" . substr($aBody[$i],($j*$numChars), $numChars) . "";
- }
- } else { $sBody .= "
" . $aBody[$i]; }
- }
+ $sBody .= $aBody[$i] . "\n";
+ }
$sToRender .= "