diff options
author | chujinjin <10746161@qq.com> | 2016-06-01 14:11:20 +0000 |
---|---|---|
committer | Rémy Coutable <remy@rymai.me> | 2016-06-02 09:46:26 +0200 |
commit | c102b03e768fab984958a6d7e48ffbe4ef946576 (patch) | |
tree | b5347c11e483ea2a422dc0a6b589a50533657908 /app/helpers | |
parent | 30524901e28176e96e7c0d1a710508367ff99d9f (diff) | |
download | gitlab-ce-c102b03e768fab984958a6d7e48ffbe4ef946576.tar.gz |
Fix wiki project clone address errorchujinjin/gitlab-ce-fix_wiki_project_clone_address_error
Diffstat (limited to 'app/helpers')
-rw-r--r-- | app/helpers/button_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/button_helper.rb b/app/helpers/button_helper.rb index a9047ede8c5..f742922d926 100644 --- a/app/helpers/button_helper.rb +++ b/app/helpers/button_helper.rb @@ -30,7 +30,7 @@ module ButtonHelper content_tag :a, protocol, class: klass, - href: @project.http_url_to_repo, + href: project.http_url_to_repo, data: { html: true, placement: 'right', |