summaryrefslogtreecommitdiffstats
path: root/web.go
diff options
context:
space:
mode:
authorUnknown <joe2010xtmf@163.com>2014-03-29 11:56:00 -0400
committerUnknown <joe2010xtmf@163.com>2014-03-29 11:56:00 -0400
commitcad2ced3945401243d7b644cb613432e1712ab41 (patch)
treed8450367d17649c4765a08dbceefe9918c651b44 /web.go
parentbe45057c3aef74c4b8bdc28ebd84c7297d1a7b62 (diff)
downloadgitea-cad2ced3945401243d7b644cb613432e1712ab41.tar.gz
gitea-cad2ced3945401243d7b644cb613432e1712ab41.zip
Bug fix
Diffstat (limited to 'web.go')
-rw-r--r--web.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/web.go b/web.go
index 7725791e84..7098717a05 100644
--- a/web.go
+++ b/web.go
@@ -92,7 +92,7 @@ func runWeb(*cli.Context) {
// Routers.
m.Get("/", ignSignIn, routers.Home)
- m.Any("/install", routers.Install)
+ m.Any("/install", binding.BindIgnErr(auth.InstallForm{}), routers.Install)
m.Get("/issues", reqSignIn, user.Issues)
m.Get("/pulls", reqSignIn, user.Pulls)
m.Get("/stars", reqSignIn, user.Stars)