@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix synthetic (lint) inline comments for comment hiding

Summary: These could cause F442758.

Test Plan: {F442779}

Reviewers: btrahan, joshuaspence

Reviewed By: joshuaspence

Subscribers: epriestley

Differential Revision: https://secure.phabricator.com/D13042

+6
+6
src/applications/differential/storage/DifferentialInlineComment.php
··· 51 51 } 52 52 53 53 public function supportsHiding() { 54 + if ($this->getSyntheticAuthor()) { 55 + return false; 56 + } 54 57 return true; 55 58 } 56 59 57 60 public function isHidden() { 61 + if (!$this->supportsHiding()) { 62 + return false; 63 + } 58 64 return $this->proxy->getIsHidden(); 59 65 } 60 66