1
1
mirror of https://github.com/go-gitea/gitea synced 2024-06-22 03:05:48 +00:00
This commit is contained in:
Unknwon 2015-08-07 00:09:28 +08:00
parent d922b7e504
commit b1f08d3218

View File

@ -315,7 +315,7 @@ func CreateUser(u *User) (err error) {
}
// Auto-set admin for the first user.
if countUsers(sess) == 1 {
if CountUsers() == 1 {
u.IsAdmin = true
u.IsActive = true
_, err = x.Id(u.Id).AllCols().Update(u)