Index: lams_central/web/comments/edit.jsp
===================================================================
diff -u -r4c2d1f37b92435907ec4ce23cb635a7cd9e4161e -r54a3c302d29d64b55efa18189083dadd13c51708
--- lams_central/web/comments/edit.jsp	(.../edit.jsp)	(revision 4c2d1f37b92435907ec4ce23cb635a7cd9e4161e)
+++ lams_central/web/comments/edit.jsp	(.../edit.jsp)	(revision 54a3c302d29d64b55efa18189083dadd13c51708)
@@ -34,7 +34,7 @@
 		
 		var theForm = $(editForm);			
 
-		if ( validateBodyText($('#editFormBody').val(), <%=CommentConstants.MAX_BODY_LENGTH%>, "") ) {
+		if ( validateBodyText($('#editFormBody').val(), <%=CommentConstants.MAX_BODY_LENGTH%>, "") ) {
 	    	$.ajax({ // create an AJAX call...
 		        data: theForm.serialize(), 
 	    	    processData: false, // tell jQuery not to process the data
@@ -48,7 +48,7 @@
 					// make sure the old edit form is gone, so the user won't try to submit it again
 					$('#edit').remove();
 				}
-				reloadThread(response,'','','');
+				reloadThread(response,'','','');
     		});
 		} // end validateBodyText
 		else {