Commit 67934145e88e439c4266d6a4f19372f170fc6095
Exists in
spb-stable
and in
2 other branches
Merge pull request #7146 from zzet/patch-11
Fix mistake in reference_jira_issue method (markdown)
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
lib/gitlab/markdown.rb
... | ... | @@ -228,7 +228,7 @@ module Gitlab |
228 | 228 | |
229 | 229 | def reference_jira_issue(identifier, project = @project) |
230 | 230 | url = url_for_issue(identifier) |
231 | - title = Gitlab.config.issues_tracker[@project.issues_tracker]["title"] | |
231 | + title = Gitlab.config.issues_tracker[project.issues_tracker]["title"] | |
232 | 232 | |
233 | 233 | options = html_options.merge( |
234 | 234 | title: "Issue in #{title}", | ... | ... |