diff options
author | Marius Balteanu <marius.balteanu@zitec.com> | 2023-11-17 07:30:18 +0000 |
---|---|---|
committer | Marius Balteanu <marius.balteanu@zitec.com> | 2023-11-17 07:30:18 +0000 |
commit | 6629fd6f3c15a4eeb9a34c2fd7b1844fe9d08ef5 (patch) | |
tree | 4b6f3dd8a2e71c75d1d9a267d3fa970c20cb6d94 /lib | |
parent | 068559e9dec4dc67c58e5f804417126bf1cc792a (diff) | |
download | redmine-6629fd6f3c15a4eeb9a34c2fd7b1844fe9d08ef5.tar.gz redmine-6629fd6f3c15a4eeb9a34c2fd7b1844fe9d08ef5.zip |
Merged r22445, r22449 and r22450 from trunk to 5.0-stable (#39553).
git-svn-id: https://svn.redmine.org/redmine/branches/5.0-stable@22455 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib')
-rw-r--r-- | lib/redmine/acts/mentionable.rb | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/lib/redmine/acts/mentionable.rb b/lib/redmine/acts/mentionable.rb index c7b0c0655..24adf04b3 100644 --- a/lib/redmine/acts/mentionable.rb +++ b/lib/redmine/acts/mentionable.rb @@ -98,12 +98,10 @@ module Redmine @([A-Za-z0-9_\-@\.]*?) (?= (?=[[:punct:]][^A-Za-z0-9_\/])| - ,| - \.+$| \s| - \]| - <| - $) + [[:punct:]]? + $ + ) /ix end end |