Commit 9dd58c320a38cbcaf8134157103b2b2a2fad76d2

Authored by Marin Jankovski
1 parent 5245fac6

Add to changelog.

Showing 2 changed files with 6 additions and 3 deletions   Show diff stats
1 -v6.7.2 1 +v 6.8.0
  2 + - Ability to at mention users that are participating in issue and merge req. discussion
  3 +
  4 +v 6.7.2
2 - Fix upgrader script 5 - Fix upgrader script
3 6
4 -v6.7.1 7 +v 6.7.1
5 - Fix GitLab CI integration 8 - Fix GitLab CI integration
6 9
7 v 6.7.0 10 v 6.7.0
lib/gitlab/markdown.rb
@@ -167,7 +167,7 @@ module Gitlab @@ -167,7 +167,7 @@ module Gitlab
167 167
168 def reference_user(identifier) 168 def reference_user(identifier)
169 if user = User.find_by_username(identifier) 169 if user = User.find_by_username(identifier)
170 - link_to("@#{identifier}", user_url(identifier), html_options.merge(class: "gfm gfm-team_member #{html_options[:class]}")) if user 170 + link_to("@#{identifier}", user_url(identifier), html_options.merge(class: "gfm gfm-team_member #{html_options[:class]}"))
171 end 171 end
172 end 172 end
173 173