Browse Source

fix source indent at ApplicationHelper#parse_redmine_links

git-svn-id: http://svn.redmine.org/redmine/trunk@19838 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/4.2.0
Toshi MARUYAMA 4 years ago
parent
commit
487b604c57
1 changed files with 10 additions and 8 deletions
  1. 10
    8
      app/helpers/application_helper.rb

+ 10
- 8
app/helpers/application_helper.rb View File

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

Loading…
Cancel
Save