mirror of
https://github.com/redmine/redmine.git
synced 2026-07-28 04:31:20 +02:00
Fixes wrong condition (#4179).
git-svn-id: http://svn.redmine.org/redmine/trunk@16638 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -962,7 +962,7 @@ module ApplicationHelper
|
||||
u = User.visible.where(:login => name, :type => 'User').first
|
||||
link = link_to_user(u) if u
|
||||
end
|
||||
elsif "@"
|
||||
elsif sep == "@"
|
||||
name = remove_double_quotes(identifier)
|
||||
u = User.visible.where(:login => name, :type => 'User').first
|
||||
link = link_to_user(u) if u
|
||||
|
||||
Reference in New Issue
Block a user