Replaced hard coded help link.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@435 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
183ede84fd
commit
1adf56664d
|
@ -33,11 +33,8 @@ class HelpController < ApplicationController
|
|||
# choose language according to available help translations
|
||||
lang = (@help_config['langs'].include? current_language.to_s) ? current_language.to_s : @help_config['langs'].first
|
||||
|
||||
if template
|
||||
redirect_to "/manual/#{lang}/#{template}"
|
||||
else
|
||||
redirect_to "/manual/#{lang}/index.html"
|
||||
end
|
||||
url = "/manual/#{lang}/" + (template || "index.html")
|
||||
redirect_to(request.relative_url_root + url)
|
||||
end
|
||||
|
||||
private
|
||||
|
|
Loading…
Reference in New Issue