From 6ed02e6ee8fb70cbf194d1dd2a84d04d325ac412 Mon Sep 17 00:00:00 2001 From: epriestley Date: Mon, 10 Dec 2012 15:12:32 -0800 Subject: [PATCH] Restore "Reply" action to Differential inline comments Summary: Minor issue from D4117, user doesn't get passed down so inline comments are missing their "reply" link. Test Plan: Looked at Differential, saw reply link. Reviewers: btrahan Reviewed By: btrahan CC: aran Differential Revision: https://secure.phabricator.com/D4145 --- .../differential/parser/DifferentialChangesetParser.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/applications/differential/parser/DifferentialChangesetParser.php b/src/applications/differential/parser/DifferentialChangesetParser.php index cd3bb6e812..be6a6546a2 100644 --- a/src/applications/differential/parser/DifferentialChangesetParser.php +++ b/src/applications/differential/parser/DifferentialChangesetParser.php @@ -989,6 +989,10 @@ final class DifferentialChangesetParser { ->setMarkupEngine($this->markupEngine) ->setHandles($this->handles); + if ($this->user) { + $renderer->setUser($this->user); + } + $shield = null; if ($this->isTopLevel && !$this->comments) { if ($this->isGenerated()) {