diff options
author | Robert Speicher <robert@gitlab.com> | 2016-01-25 20:47:51 +0000 |
---|---|---|
committer | Robert Speicher <robert@gitlab.com> | 2016-01-25 20:47:51 +0000 |
commit | 08755f6410a0c13f1ec9d774b19c4928bac2c75b (patch) | |
tree | afab1c534f75115103d2348ecaae75f80f1669eb | |
parent | 8b3285bfdffc3ee6a2fbd65a8d7981214344deda (diff) | |
parent | 26e31f5820ff2ccfcf9f84ffe3bdf1d274d13687 (diff) | |
download | gitlab-ce-08755f6410a0c13f1ec9d774b19c4928bac2c75b.tar.gz |
Merge branch 'rm-depr-forum-promolink' into 'master'
Substituted deprecated forum link with project issues link.
Within the promo partial template we had a Requests link to the
deprecated Forum which is now directing to the project's Issue page.
See merge request !2255
-rw-r--r-- | app/views/shared/_promo.html.haml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/views/shared/_promo.html.haml b/app/views/shared/_promo.html.haml index 3596aabe309..09edf4000d5 100644 --- a/app/views/shared/_promo.html.haml +++ b/app/views/shared/_promo.html.haml @@ -1,5 +1,5 @@ .gitlab-promo = link_to 'Homepage', promo_url - = link_to "Blog", promo_url + '/blog/' - = link_to "@gitlab", "https://twitter.com/gitlab" - = link_to "Requests", "http://feedback.gitlab.com/" + = link_to 'Blog', promo_url + '/blog/' + = link_to '@gitlab', 'https://twitter.com/gitlab' + = link_to 'Requests', 'https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CONTRIBUTING.md#feature-proposals' |