summaryrefslogtreecommitdiffstats
path: root/routers
diff options
context:
space:
mode:
authorUnknwon <u@gogs.io>2016-02-05 13:11:45 -0500
committerUnknwon <u@gogs.io>2016-02-05 13:11:45 -0500
commit4e96a4a62b1bfbe07bc97e75478c1289f6b4d5a9 (patch)
tree789e608ccd186743b8ffb0dc99b4808fa4de23db /routers
parentd4583ebd4b2c1508ce01ea0e7f62dacd223db5c1 (diff)
parent1ab8a60d737b278c176d0b6204843a79dab0e878 (diff)
downloadgitea-4e96a4a62b1bfbe07bc97e75478c1289f6b4d5a9.tar.gz
gitea-4e96a4a62b1bfbe07bc97e75478c1289f6b4d5a9.zip
Merge pull request #2406 from bkcsoft/feature/markdown-custom-url-scheme
Feature/markdown custom url scheme
Diffstat (limited to 'routers')
-rw-r--r--routers/install.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/routers/install.go b/routers/install.go
index 120aa46851..b311355bf8 100644
--- a/routers/install.go
+++ b/routers/install.go
@@ -91,6 +91,9 @@ func GlobalInit() {
ssh.Listen(setting.SSHPort)
log.Info("SSH server started on :%v", setting.SSHPort)
}
+
+ // Build Sanitizer
+ base.BuildSanitizer()
}
func InstallInit(ctx *middleware.Context) {