public void ignoreCommentFlag(ActionEvent event) {
   if (ignoreCommentFlagLink.getAttributes().get("commentId") != null) {
     flaggedCommentId =
         new Long(ignoreCommentFlagLink.getAttributes().get("commentId").toString());
   }
   String okMessage =
       "You reported as abusive a comment in the study titled, "
           + getFlaggedStudyTitle()
           + ". "
           + "\n"
           + "The comment was, \""
           + getFlaggedStudyComment()
           + "\". "
           + "\n"
           + "According to the terms of use of this study, the "
           + "reported comment is not an abuse. This comment will remain posted, and will "
           + "no longer appear to you as reported.";
   studyCommentService.okComment(flaggedCommentId, okMessage);
   getVDCRequestBean().setSuccessMessage("Successfully ignored the flagged comment.");
   // cleanup
   flaggedCommentId = new Long("0");
   commentsForReview = null;
   actionComplete = true;
 }