summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDouwe Maan <douwe@gitlab.com>2015-04-21 17:37:08 +0200
committerDouwe Maan <douwe@gitlab.com>2015-04-23 17:11:39 +0200
commit059cc16430e6b45c6753f05224fc64aa85fd8900 (patch)
tree6f1639cc2584e9f84a61b66be92f5e3d197cf9c2
parent713413a86c47001a21633bd493c03efcf2980b89 (diff)
downloadgitlab-ce-059cc16430e6b45c6753f05224fc64aa85fd8900.tar.gz
Fix project atom link tag.
-rw-r--r--app/views/projects/show.html.haml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/projects/show.html.haml b/app/views/projects/show.html.haml
index e9d4fdc96e1..3342a7e99bc 100644
--- a/app/views/projects/show.html.haml
+++ b/app/views/projects/show.html.haml
@@ -1,6 +1,6 @@
= content_for :meta_tags do
- if current_user
- = auto_discovery_link_tag(:atom, namespace_project_path(@project.namespace, @project, format: :atom, private_token: current_user.private_token), title: "#{@group.name} activity")
+ = auto_discovery_link_tag(:atom, namespace_project_path(@project.namespace, @project, format: :atom, private_token: current_user.private_token), title: "#{@project.name} activity")
- if current_user && can?(current_user, :download_code, @project)
= render 'shared/no_ssh'