瀏覽代碼

Moved the project name after the item in the html title (#9593).

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7842 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/1.3.0
Jean-Philippe Lang 12 年之前
父節點
當前提交
bf18ee107d
共有 2 個文件被更改,包括 4 次插入3 次删除
  1. 2
    3
      app/helpers/application_helper.rb
  2. 2
    0
      test/functional/issues_controller_test.rb

+ 2
- 3
app/helpers/application_helper.rb 查看文件

@@ -437,10 +437,9 @@ module ApplicationHelper

def html_title(*args)
if args.empty?
title = []
title = @html_title || []
title << @project.name if @project
title += @html_title if @html_title
title << Setting.app_title
title << Setting.app_title unless Setting.app_title == title.last
title.select {|t| !t.blank? }.join(' - ')
else
@html_title ||= []

+ 2
- 0
test/functional/issues_controller_test.rb 查看文件

@@ -480,6 +480,8 @@ class IssuesControllerTest < ActionController::TestCase
:descendant => { :tag => 'fieldset',
:child => { :tag => 'legend',
:content => /Notes/ } }
assert_tag :tag => 'title',
:content => "Bug #1: Can't print recipes - eCookbook - Redmine"
end

def test_show_by_manager

Loading…
取消
儲存