/**
  * Post proofread comment.
  */
 function postProofreadComment()
 {
     AuthorHandler::validate();
     AuthorHandler::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;
     list($journal, $authorSubmission) = TrackSubmissionHandler::validate($articleId);
     if (AuthorAction::postProofreadComment($authorSubmission, $emailComment)) {
         AuthorAction::viewProofreadComments($authorSubmission);
     }
 }
 /**
  * Post proofread comment.
  * @param $args array
  * @param $request object
  */
 function postProofreadComment($args, $request)
 {
     $articleId = (int) $request->getUserVar('articleId');
     $this->validate($request, $articleId);
     $this->setupTemplate($request, true);
     // If the user pressed the "Save and email" button, then email the comment.
     $emailComment = $request->getUserVar('saveAndEmail') != null ? true : false;
     if (AuthorAction::postProofreadComment($this->submission, $emailComment, $request)) {
         AuthorAction::viewProofreadComments($this->submission);
     }
 }
 /**
  * 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;
     $trackSubmissionHandler = new TrackSubmissionHandler();
     $trackSubmissionHandler->validate($articleId);
     $authorSubmission =& $trackSubmissionHandler->submission;
     if (AuthorAction::postProofreadComment($authorSubmission, $emailComment)) {
         AuthorAction::viewProofreadComments($authorSubmission);
     }
 }