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:
parent
340b40172f
commit
546d092ebd
1 changed files with 1 additions and 1 deletions
|
@ -28,7 +28,7 @@ final class PonderQuestionCommentController extends PonderController {
|
|||
// $draft = PhabricatorDraft::buildFromRequest($request);
|
||||
|
||||
$qid = $question->getID();
|
||||
$view_uri = "Q{$qid}";
|
||||
$view_uri = "/Q{$qid}";
|
||||
|
||||
$xactions = array();
|
||||
$xactions[] = id(new PonderQuestionTransaction())
|
||||
|
|
Loading…
Reference in a new issue