Albirew/nyaa-pantsu
Archivé
1
0
Bifurcation 0

Hopes that work

Cette révision appartient à :
akuma06 2017-05-06 18:15:02 +02:00
Parent 7651459b7f
révision 7d0311343f

Voir le fichier

@ -2,7 +2,7 @@ package modelHelper
import (
"reflect"
"net/http"
"github.com/ewhal/nyaa/util/log"
)
@ -32,6 +32,6 @@ func BindValueForm(form interface{}, r *http.Request) {
formElem := reflect.ValueOf(form).Elem()
typeOfTForm := formElem.Type()
for i := 0; i < formElem.NumField(); i++ {
formField := formElem.Field(i).Set(r.PostFormValue(typeOfTForm.Field(i).Name))
formElem.Field(i).Set(r.PostFormValue(typeOfTForm.Field(i).Name))
}
}