1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-12-20 12:30:56 +01:00

Fix an issue with Diviner symbol rule using incorrect logic

Auditors: btrahan
This commit is contained in:
epriestley 2014-07-02 04:57:38 -07:00
parent 88aba65d54
commit 394dcb7900
2 changed files with 2 additions and 2 deletions

View file

@ -34,7 +34,7 @@ final class DivinerRemarkupRuleSymbol extends PhutilRemarkupRule {
} }
public function markupSymbol($matches) { public function markupSymbol($matches) {
if ($this->isFlatText($matches[0])) { if (!$this->isFlatText($matches[0])) {
return $matches[0]; return $matches[0];
} }

View file

@ -41,7 +41,7 @@ final class PhabricatorMarkupEngine {
private $objects = array(); private $objects = array();
private $viewer; private $viewer;
private $version = 10; private $version = 11;
/* -( Markup Pipeline )---------------------------------------------------- */ /* -( Markup Pipeline )---------------------------------------------------- */