/**
  * Post layout comment.
  * @param $args array
  * @param $request PKPRequest
  */
 function postLayoutComment($args, $request)
 {
     $articleId = (int) $request->getUserVar('articleId');
     $this->validate($request, $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 (ProofreaderAction::postLayoutComment($this->submission, $emailComment, $request)) {
         ProofreaderAction::viewLayoutComments($this->submission);
     }
 }
 /**
  * Post layout comment.
  */
 function postLayoutComment()
 {
     ProofreaderHandler::validate();
     ProofreaderHandler::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, $submission) = SubmissionProofreadHandler::validate($articleId);
     if (ProofreaderAction::postLayoutComment($submission, $emailComment)) {
         ProofreaderAction::viewLayoutComments($submission);
     }
 }