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
path: root/app/views
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-01-20 02:01:00 +0300
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-01-20 02:01:00 +0300
commite3987bb6b150a255a76310cc1eabda8945e2f0cd (patch)
treed0409f81453a311fb8994bfd925024fcc5e86c34 /app/views
parenta4bd1f2ae39b7b35b0c47f63d6bbe1315eea63e4 (diff)
parentd76d8974928c238eed133cced439cbde4dd3239c (diff)
Merge pull request #8585 from duduribeiro/fix_email_in_ssh_help_page
Fix the email variable substituation in ssh help page
Diffstat (limited to 'app/views')
-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)