Fix typo: (*App).CheckForClienSideCert to (*App).CheckForClientSideCert (#10092)

N/A

- [x] Includes text changes and localization file ([.../i18n/en.json](https://github.com/mattermost/platform/blob/master/i18n/en.json) and [.../webapp/i18n/en.json](https://github.com/mattermost/platform/tree/master/webapp/i18n/en.json)) updates
Этот коммит содержится в:
Koki Tomoshige
2019-01-12 07:38:34 +09:00
коммит произвёл Jesse Hallam
родитель 8e9df61934
Коммит d9a7db0f19
3 изменённых файлов: 5 добавлений и 5 удалений

Просмотреть файл

@@ -1094,7 +1094,7 @@ func login(c *Context, w http.ResponseWriter, r *http.Request) {
c.Err = model.NewAppError("ClientSideCertNotAllowed", "api.user.login.client_side_cert.license.app_error", nil, "", http.StatusBadRequest)
return
}
certPem, certSubject, certEmail := c.App.CheckForClienSideCert(r)
certPem, certSubject, certEmail := c.App.CheckForClientSideCert(r)
mlog.Debug("Client Cert", mlog.String("cert_subject", certSubject), mlog.String("cert_email", certEmail))
if len(certPem) == 0 || len(certEmail) == 0 {