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
CHANGELOG
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 5 - Fix upgrader script
3 6  
4   -v6.7.1
  7 +v 6.7.1
5 8 - Fix GitLab CI integration
6 9  
7 10 v 6.7.0
... ...
lib/gitlab/markdown.rb
... ... @@ -167,7 +167,7 @@ module Gitlab
167 167  
168 168 def reference_user(identifier)
169 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 171 end
172 172 end
173 173  
... ...