mirror of
https://github.com/redmine/redmine.git
synced 2025-12-16 05:20:28 +01:00
fix source indent at ApplicationHelper#parse_redmine_links
git-svn-id: http://svn.redmine.org/redmine/trunk@19838 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -1145,14 +1145,16 @@ module ApplicationHelper
|
||||
"repository_id = ? AND scmid LIKE ?",
|
||||
repository.id, "#{name}%"
|
||||
).first)
|
||||
link = link_to(
|
||||
h("#{project_prefix}#{repo_prefix}#{name}"),
|
||||
{:only_path => only_path, :controller => 'repositories',
|
||||
:action => 'revision', :id => project,
|
||||
:repository_id => repository.identifier_param,
|
||||
:rev => changeset.identifier},
|
||||
:class => 'changeset',
|
||||
:title => truncate_single_line_raw(changeset.comments, 100))
|
||||
link =
|
||||
link_to(
|
||||
h("#{project_prefix}#{repo_prefix}#{name}"),
|
||||
{:only_path => only_path, :controller => 'repositories',
|
||||
:action => 'revision', :id => project,
|
||||
:repository_id => repository.identifier_param,
|
||||
:rev => changeset.identifier},
|
||||
:class => 'changeset',
|
||||
:title => truncate_single_line_raw(changeset.comments, 100)
|
||||
)
|
||||
end
|
||||
else
|
||||
if repository && User.current.allowed_to?(:browse_repository, project)
|
||||
|
||||
Reference in New Issue
Block a user