Commit 788723c39e16ea6701676d5c1dd628ff1ff435f3
Exists in
spb-stable
and in
3 other branches
Merge branch 'master' of github.com:gitlabhq/gitlabhq
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
lib/gitlab/markdown.rb
... | ... | @@ -98,7 +98,7 @@ module Gitlab |
98 | 98 | (?<prefix>\W)? # Prefix |
99 | 99 | ( # Reference |
100 | 100 | @(?<user>[a-zA-Z][a-zA-Z0-9_\-\.]*) # User name |
101 | - |\#(?<issue>([a-zA-Z]+-)?\d+) # Issue ID | |
101 | + |\#(?<issue>([a-zA-Z\-]+-)?\d+) # Issue ID | |
102 | 102 | |!(?<merge_request>\d+) # MR ID |
103 | 103 | |\$(?<snippet>\d+) # Snippet ID |
104 | 104 | |(?<commit>[\h]{6,40}) # Commit ID | ... | ... |