Commit 753a2f17c2caed217b6843f9cd3c0edb0a3aa2c0

Authored by Dmitriy Zaporozhets
2 parents 2c502524 b621c987

Merge pull request #6022 from jvanbaarsen/issue-title-in-title

Added issue title to page title
Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
app/helpers/projects_helper.rb
... ... @@ -153,7 +153,7 @@ module ProjectsHelper
153 153 "#{@project.path}\/#{@path} at #{@ref} - " + title
154 154 elsif current_controller?(:issues)
155 155 if current_action?(:show)
156   - "Issue ##{@issue.iid} - " + title
  156 + "Issue ##{@issue.iid} - #{@issue.title} - " + title
157 157 else
158 158 "Issues - " + title
159 159 end
... ...