/**
  * Post proofread comment.
  */
 function postProofreadComment()
 {
     $this->validate();
     $this->setupTemplate(true);
     $articleId = Request::getUserVar('articleId');
     // If the user pressed the "Save and email" button, then email the comment.
     $emailComment = Request::getUserVar('saveAndEmail') != null ? true : false;
     $submissionEditHandler = new SubmissionEditHandler();
     $submissionEditHandler->validate($articleId);
     $submission =& $submissionEditHandler->submission;
     if (SectionEditorAction::postProofreadComment($submission, $emailComment)) {
         SectionEditorAction::viewProofreadComments($submission);
     }
 }
 /**
  * Post proofread comment.
  * @param $args array
  * @param $request PKPRequest
  */
 function postProofreadComment($args, $request)
 {
     $articleId = (int) $request->getUserVar('articleId');
     $this->validate($articleId);
     $this->setupTemplate(true);
     // If the user pressed the "Save and email" button, then email the comment.
     $emailComment = $request->getUserVar('saveAndEmail') != null ? true : false;
     if (SectionEditorAction::postProofreadComment($this->submission, $emailComment, $request)) {
         SectionEditorAction::viewProofreadComments($this->submission);
     }
 }