1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-01 22:13:28 +00:00

Merge pull request #1467 from astaxie/revert-1464-master

Revert "Update orm_querym2m.go"
This commit is contained in:
astaxie 2015-12-02 16:35:44 +08:00
commit 36664634f9

View File

@ -55,7 +55,7 @@ func (o *queryM2M) Add(mds ...interface{}) (int64, error) {
for i, md := range mds {
if reflect.Indirect(reflect.ValueOf(md)).Kind() != reflect.Struct && i > 0 {
other_values = append(other_values, md)
mds = append(mds[:1], mds[2:]...)
mds = append(mds[:i], mds[i+1:]...)
}
}
for _, md := range mds {