Commit f07a27949569a3ef2758feecea24569eb7a82fd9
1 parent
4018929d
Removed mutiple textarea names
git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@2187 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
1 additions
and
1 deletions
presentation/lookAndFeel/knowledgeTree/discussions/addCommentUI.inc
| ... | ... | @@ -62,7 +62,7 @@ function getAddComment($fDocumentID, $sSubject, $sBody, $iCommentID, $fNewCommen |
| 62 | 62 | } |
| 63 | 63 | $sToRender .= "<br><tr><td valign=\"top\" width=10><b>Subject</b></td><td colspan=2>\n"; |
| 64 | 64 | $sToRender .= "<input type=\"text\" style=\"width:385\" name=\"NewCommentSubject\" id=\"NewCommentSubject\" value=\"$sSubject\"></td></tr>\n"; |
| 65 | - $sToRender .= "<tr><td valign=\"top\"><b>Body</b></td><td colspan=2><textarea name='txtComment' cols=60 rows=\"21\" name=\"NewComment\" id=\"NewComment\" wrap=\"physical\" >$sBody</textarea></td></tr></table>\n"; | |
| 65 | + $sToRender .= "<tr><td valign=\"top\"><b>Body</b></td><td colspan=2><textarea cols=60 rows=\"21\" name=\"NewComment\" id=\"NewComment\" wrap=\"physical\" >$sBody</textarea></td></tr></table>\n"; | |
| 66 | 66 | return $sToRender; |
| 67 | 67 | } |
| 68 | 68 | ... | ... |