Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarlos Ribeiro <duduribeiro.gba@gmail.com>2015-01-16 04:06:32 +0300
committerCarlos Ribeiro <duduribeiro.gba@gmail.com>2015-01-16 04:06:32 +0300
commit714ef622644ff478f9538f9b0b4d160d6340214f (patch)
treeb814eb3dab1ecb7866a4ad142fafe0eabb4d7fa4 /app/views/help/show.html.haml
parent23255bff9913fc1a58c1cf629a2a030c1cbf8a87 (diff)
Fix the email variable substituation in ssh help page
Diffstat (limited to 'app/views/help/show.html.haml')
-rw-r--r--app/views/help/show.html.haml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/help/show.html.haml b/app/views/help/show.html.haml
index 67f9cc41cf3..eca34dbff06 100644
--- a/app/views/help/show.html.haml
+++ b/app/views/help/show.html.haml
@@ -1,2 +1,2 @@
.documentation.wiki
- = markdown File.read(Rails.root.join('doc', @category, @file + '.md'))
+ = markdown File.read(Rails.root.join('doc', @category, @file + '.md')).gsub("$your_email", current_user.email)