Browse Source

remove extra comma

tags/v1.2.0-rc1
Marios Andreopoulos 10 years ago
parent
commit
b40922f4d4
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      routers/user/setting.go

+ 1
- 1
routers/user/setting.go View File

@@ -172,7 +172,7 @@ func SettingsSSHKeysPost(ctx *middleware.Context, form auth.AddSSHKeyForm) {
}

// Remove newline characters from form.KeyContent
cleanKeyContent := strings.Replace(form.KeyContent, "\n", "", -1),
cleanKeyContent := strings.Replace(form.KeyContent, "\n", "", -1)

if ok, err := models.CheckPublicKeyString(cleanKeyContent); !ok {
ctx.Flash.Error(ctx.Tr("form.invalid_ssh_key", err.Error()))


Loading…
Cancel
Save