1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 09:18:48 +02:00

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
This commit is contained in:
epriestley 2015-05-08 07:06:14 -07:00
parent 314dc5b957
commit 7c96ba4ced

View file

@ -266,6 +266,8 @@ abstract class PhabricatorInlineCommentController
// comment appears on. This is expected in the case of ghost comments. // comment appears on. This is expected in the case of ghost comments.
// We currently put the new comment on the visible changeset, not the // We currently put the new comment on the visible changeset, not the
// original comment's changeset. // original comment's changeset.
$this->isNewFile = $reply_comment->getIsNewFile();
} }
} }