Skip to content

Commit

Permalink
*8139* fix form handling for attachments
Browse files Browse the repository at this point in the history
  • Loading branch information
jnugent committed Mar 4, 2013
1 parent 878fb63 commit 317d00f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pages/author/TrackSubmissionHandler.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -508,11 +508,11 @@ function authorProofreadingComplete($args, $request) {
$this->validate($request, $articleId);
$this->setupTemplate($request, true);

$send = array_shift($args);
$send = $request->getUserVar('send');

import('classes.submission.proofreader.ProofreaderAction');

if (ProofreaderAction::proofreadEmail($articleId, 'PROOFREAD_AUTHOR_COMPLETE', $request, $send?'':$request->url(null, 'author', 'authorProofreadingComplete', 'send'))) {
if (ProofreaderAction::proofreadEmail($articleId, 'PROOFREAD_AUTHOR_COMPLETE', $request, $send?'':$request->url(null, 'author', 'authorProofreadingComplete'))) {
$request->redirect(null, null, 'submissionEditing', $articleId);
}
}
Expand Down

0 comments on commit 317d00f

Please sign in to comment.