@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 an issue with Diviner symbol rule using incorrect logic

Auditors: btrahan

+2 -2
+1 -1
src/applications/diviner/markup/DivinerRemarkupRuleSymbol.php
··· 34 34 } 35 35 36 36 public function markupSymbol($matches) { 37 - if ($this->isFlatText($matches[0])) { 37 + if (!$this->isFlatText($matches[0])) { 38 38 return $matches[0]; 39 39 } 40 40
+1 -1
src/infrastructure/markup/PhabricatorMarkupEngine.php
··· 41 41 42 42 private $objects = array(); 43 43 private $viewer; 44 - private $version = 10; 44 + private $version = 11; 45 45 46 46 47 47 /* -( Markup Pipeline )---------------------------------------------------- */