浏览代码

Fixes wrong condition (#4179).

git-svn-id: http://svn.redmine.org/redmine/trunk@16638 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/3.4.0
Jean-Philippe Lang 7 年前
父节点
当前提交
d3f93a2907
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      app/helpers/application_helper.rb

+ 1
- 1
app/helpers/application_helper.rb 查看文件

@@ -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

正在加载...
取消
保存