diff options
author | Thibault Meyer <meyer.thibault@gmail.com> | 2016-10-04 18:58:14 +0200 |
---|---|---|
committer | Thibault Meyer <meyer.thibault@gmail.com> | 2016-10-04 18:58:14 +0200 |
commit | 93f1eabe3087ac723f8f404def8dba40359f0d64 (patch) | |
tree | e3548dc23d09ddd9cfb93393b5ca1961e32cc2b6 /modules/context | |
parent | 9d66497abca96905fbeba53bf8983301710d6064 (diff) | |
download | gitea-93f1eabe3087ac723f8f404def8dba40359f0d64.tar.gz gitea-93f1eabe3087ac723f8f404def8dba40359f0d64.zip |
rename variable + fix wiki link
Diffstat (limited to 'modules/context')
-rw-r--r-- | modules/context/repo.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/context/repo.go b/modules/context/repo.go index 8b52a20a4a..b3d483df3f 100644 --- a/modules/context/repo.go +++ b/modules/context/repo.go @@ -256,7 +256,7 @@ func RepoAssignment(args ...bool) macaron.Handler { ctx.Data["IsRepositoryWriter"] = ctx.Repo.IsWriter() ctx.Data["DisableSSH"] = setting.SSH.Disabled - ctx.Data["DisableHTTP"] = setting.Repository.DisableHttpGit + ctx.Data["DisableHTTP"] = setting.Repository.DisableHTTPGit ctx.Data["CloneLink"] = repo.CloneLink() ctx.Data["WikiCloneLink"] = repo.WikiCloneLink() |