##// END OF EJS Templates
Test failure with JRuby 1.7.2 (#12228)....
Jean-Philippe Lang -
r11049:b73c42f61959
parent child
Show More
@@ -588,9 +588,9 module ApplicationHelper
588 588 esc, all, page, title = $1, $2, $3, $5
589 589 if esc.nil?
590 590 if page =~ /^([^\:]+)\:(.*)$/
591 link_project = Project.find_by_identifier($1) || Project.find_by_name($1)
592 page = $2
593 title ||= $1 if page.blank?
591 identifier, page = $1, $2
592 link_project = Project.find_by_identifier(identifier) || Project.find_by_name(identifier)
593 title ||= identifier if page.blank?
594 594 end
595 595
596 596 if link_project && link_project.wiki
General Comments 0
You need to be logged in to leave comments. Login now