Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15409633
D14186.id34271.saU.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D14186.id34271.saU.diff
View Options
diff --git a/src/applications/diffusion/remarkup/__tests__/DiffusionCommitRemarkupRuleTestCase.php b/src/applications/diffusion/remarkup/__tests__/DiffusionCommitRemarkupRuleTestCase.php
--- a/src/applications/diffusion/remarkup/__tests__/DiffusionCommitRemarkupRuleTestCase.php
+++ b/src/applications/diffusion/remarkup/__tests__/DiffusionCommitRemarkupRuleTestCase.php
@@ -121,6 +121,25 @@
),
),
),
+
+ // After an "@", we should not be recognizing references because these
+ // are username mentions.
+ 'deadbeef' => array(
+ 'embed' => array(
+ ),
+ 'ref' => array(
+ array(
+ 'offset' => 0,
+ 'id' => 'deadbeef',
+ ),
+ ),
+ ),
+ '@deadbeef' => array(
+ 'embed' => array(
+ ),
+ 'ref' => array(
+ ),
+ ),
);
foreach ($cases as $input => $expect) {
diff --git a/src/infrastructure/markup/rule/PhabricatorObjectRemarkupRule.php b/src/infrastructure/markup/rule/PhabricatorObjectRemarkupRule.php
--- a/src/infrastructure/markup/rule/PhabricatorObjectRemarkupRule.php
+++ b/src/infrastructure/markup/rule/PhabricatorObjectRemarkupRule.php
@@ -209,13 +209,14 @@
$boundary = '\\B';
}
- // The "(?<![#-])" prevents us from linking "#abcdef" or similar, and
- // "ABC-T1" (see T5714).
+ // The "(?<![#-@])" prevents us from linking "#abcdef" or similar, and
+ // "ABC-T1" (see T5714), and from matching "@T1" as a task (it is a user)
+ // (see T9479).
// The "\b" allows us to link "(abcdef)" or similar without linking things
// in the middle of words.
- return '((?<![#-])'.$boundary.$prefix.'('.$id.')(?:#([-\w\d]+))?(?!\w))u';
+ return '((?<![#@-])'.$boundary.$prefix.'('.$id.')(?:#([-\w\d]+))?(?!\w))u';
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Thu, Mar 20, 4:48 AM (2 w, 1 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7301520
Default Alt Text
D14186.id34271.saU.diff (1 KB)
Attached To
Mode
D14186: Stop all object mentions from matching after "@"
Attached
Detach File
Event Timeline
Log In to Comment