This commit is contained in:
Liang Ding 2015-01-17 11:15:34 +08:00
parent b46a173a85
commit 3b34e53a8e
1 changed files with 3 additions and 2 deletions

View File

@ -24,6 +24,7 @@ import (
"path/filepath"
"runtime"
"strconv"
"strings"
"sync"
"text/template"
"time"
@ -337,11 +338,11 @@ func addUser(username, password, email string) string {
defer addUserMutex.Unlock()
for _, user := range conf.Users {
if user.Name == username {
if strings.ToLower(user.Name) == strings.ToLower(username) {
return userExists
}
if user.Email == email {
if strings.ToLower(user.Email) == strings.ToLower(email) {
return emailExists
}
}