Browse Source

Test failure with JRuby 1.7.2 (#12228).

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11279 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/2.3.0
Jean-Philippe Lang 11 years ago
parent
commit
b73c42f619
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      app/helpers/application_helper.rb

+ 3
- 3
app/helpers/application_helper.rb View File

@@ -588,9 +588,9 @@ module ApplicationHelper
esc, all, page, title = $1, $2, $3, $5
if esc.nil?
if page =~ /^([^\:]+)\:(.*)$/
link_project = Project.find_by_identifier($1) || Project.find_by_name($1)
page = $2
title ||= $1 if page.blank?
identifier, page = $1, $2
link_project = Project.find_by_identifier(identifier) || Project.find_by_name(identifier)
title ||= identifier if page.blank?
end

if link_project && link_project.wiki

Loading…
Cancel
Save