1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-19 05:12:41 +01:00

Ponder - fix redirect after leaving a question comment

Summary: we did some security lock down on URI stuff and I think this was a casualty. Fixes T5992.

Test Plan: left a comment, got redirected. no more 500 response.

Reviewers: chad, epriestley

Reviewed By: epriestley

Subscribers: epriestley, Korvin

Maniphest Tasks: T5992

Differential Revision: https://secure.phabricator.com/D10388
This commit is contained in:
Bob Trahan 2014-08-29 11:33:36 -07:00
parent 340b40172f
commit 546d092ebd

View file

@ -28,7 +28,7 @@ final class PonderQuestionCommentController extends PonderController {
// $draft = PhabricatorDraft::buildFromRequest($request); // $draft = PhabricatorDraft::buildFromRequest($request);
$qid = $question->getID(); $qid = $question->getID();
$view_uri = "Q{$qid}"; $view_uri = "/Q{$qid}";
$xactions = array(); $xactions = array();
$xactions[] = id(new PonderQuestionTransaction()) $xactions[] = id(new PonderQuestionTransaction())