/**
  * Removes a submission note.
  * Redirects to submission notes list
  */
 function removeSubmissionNote($args, $request)
 {
     $paperId = (int) $request->getUserVar('paperId');
     $this->validate($request, $paperId);
     TrackDirectorAction::removeSubmissionNote($paperId);
     $request->redirect(null, null, null, 'submissionNotes', $paperId);
 }
 /**
  * Removes a submission note.
  * Redirects to submission notes list
  */
 function removeSubmissionNote()
 {
     $paperId = Request::getUserVar('paperId');
     $this->validate($paperId);
     TrackDirectorAction::removeSubmissionNote($paperId);
     Request::redirect(null, null, null, 'submissionNotes', $paperId);
 }