Commit 8b459390df687dd101146bbda3f662949c3ce07e

Authored by nbm
1 parent b8256b91

Consistently use variables prefixed with 'f' for passing values between

requests.


git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@3188 c91229c3-7414-0410-bfa2-8a42b809f60b
presentation/lookAndFeel/knowledgeTree/discussions/viewDiscussionUI.inc
... ... @@ -86,7 +86,7 @@ function getViewComment($iNum, $oThread, $oComment, $sIndent) {
86 86  
87 87 $sToRender .= "<tr>\n";
88 88 $sToRender .= "\t<td style=\"background-color:$BGcolor\" width=450>\n";
89   - $sToRender .= "\t\t$sIndent<a href=\"" . generateControllerLink("viewComment", "iCommentID=" . $oComment->getID() . "&iDocumentID=" . $oThread->getDocumentID() . "&iThreadID=" . $oThread->getID()) . "\" title=\"" . $oComment->getSubject() . "\">\n";
  89 + $sToRender .= "\t\t$sIndent<a href=\"" . generateControllerLink("viewComment", "fCommentID=" . $oComment->getID() . "&fDocumentID=" . $oThread->getDocumentID() . "&fThreadID=" . $oThread->getID()) . "\" title=\"" . $oComment->getSubject() . "\">\n";
90 90 $sToRender .= substr($oComment->getSubject(),0,$iSubjectChars ) . $dotdot . "</a></td>\n";
91 91 $sToRender .= "\t<td style=\"background-color:$UserBGcolor\" width=\"100\" title=\"$sUserName\">\n";
92 92 $sToRender .= "\t\t$sUserName</td>\n";
... ...