diff options
author | Unknwon <u@gogs.io> | 2016-02-05 13:11:45 -0500 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2016-02-05 13:11:45 -0500 |
commit | 4e96a4a62b1bfbe07bc97e75478c1289f6b4d5a9 (patch) | |
tree | 789e608ccd186743b8ffb0dc99b4808fa4de23db /routers | |
parent | d4583ebd4b2c1508ce01ea0e7f62dacd223db5c1 (diff) | |
parent | 1ab8a60d737b278c176d0b6204843a79dab0e878 (diff) | |
download | gitea-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.go | 3 |
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) { |