diff --git a/src/infrastructure/markup/rule/PhabricatorBugzillaLinkRule.php b/src/infrastructure/markup/rule/PhabricatorBugzillaLinkRule.php index d9c018e141..eae8c9d2be 100644 --- a/src/infrastructure/markup/rule/PhabricatorBugzillaLinkRule.php +++ b/src/infrastructure/markup/rule/PhabricatorBugzillaLinkRule.php @@ -8,7 +8,7 @@ public function getPriority() { public function apply($text) { return preg_replace_callback( - '/bug\s*#?\s*(\d+)(\s*comment\s*\#?\s*(\d+))?/i', + '/\bbug\s*#?\s*(\d+)(\s*comment\s*\#?\s*(\d+))?\b/i', array($this, 'markupBugzillaLink'), $text );