1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-30 11:24:12 +00:00

bugfix: if a form field type is bool, valid Required should always return true instead of return its value.

This commit is contained in:
pylemon 2015-03-27 13:30:59 +08:00 committed by astaxie
parent a7e60c93dc
commit 91886a4547

View File

@ -64,8 +64,8 @@ func (r Required) IsSatisfied(obj interface{}) bool {
if str, ok := obj.(string); ok { if str, ok := obj.(string); ok {
return len(str) > 0 return len(str) > 0
} }
if b, ok := obj.(bool); ok { if _, ok := obj.(bool); ok {
return b return true
} }
if i, ok := obj.(int); ok { if i, ok := obj.(int); ok {
return i != 0 return i != 0