From 7c96ba4ced4825b659286f1ecd55e954408b685c Mon Sep 17 00:00:00 2001 From: epriestley Date: Fri, 8 May 2015 07:06:14 -0700 Subject: [PATCH] Fix another "reply" issue with inlines showing up on the wrong side We can just trust the "reply" value on the server, since inlines never port from old to new or vice versa. Auditors: btrahan --- src/infrastructure/diff/PhabricatorInlineCommentController.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/infrastructure/diff/PhabricatorInlineCommentController.php b/src/infrastructure/diff/PhabricatorInlineCommentController.php index bc4358ba55..4608ebeffa 100644 --- a/src/infrastructure/diff/PhabricatorInlineCommentController.php +++ b/src/infrastructure/diff/PhabricatorInlineCommentController.php @@ -266,6 +266,8 @@ abstract class PhabricatorInlineCommentController // comment appears on. This is expected in the case of ghost comments. // We currently put the new comment on the visible changeset, not the // original comment's changeset. + + $this->isNewFile = $reply_comment->getIsNewFile(); } }