Explorar el Código

更新

master
huangjiajun hace 4 meses
padre
commit
cf7d03dc34
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      app/db/db_user_profile.go

+ 1
- 1
app/db/db_user_profile.go Ver fichero

@@ -397,7 +397,7 @@ func UserProfileUpdate(Db *xorm.Engine, uid interface{}, userProfile *model.User
if forceCols != nil {
affected, err = Db.Where("uid=?", uid).Cols(forceCols...).Update(userProfile)
} else {
affected, err = Db.Where("uid=?", uid).AllCols().Omit("fin_valid").Update(userProfile)
affected, err = Db.Where("uid=?", uid).AllCols().Omit("fin_valid,parent_uid").Update(userProfile)
}

if err != nil {


Cargando…
Cancelar
Guardar