Make WordPress Core

Ticket #39341: 39341.diff

File 39341.diff, 858 bytes (added by adamsilverstein, 8 years ago)
  • src/wp-includes/js/wp-api.js

     
    185185                                        } else {
    186186
    187187                                                // We already have args, merge these new args in.
    188                                                 modelInstance.prototype.args = _.union( routeEndpoint.args, modelInstance.prototype.defaults );
     188                                                modelInstance.prototype.args = _.extend( modelInstance.prototype.args, routeEndpoint.args );
    189189                                        }
    190190                                }
    191191                        } else {
     
    202202                                                } else {
    203203
    204204                                                        // We already have options, merge these new args in.
    205                                                         modelInstance.prototype.options = _.union( routeEndpoint.args, modelInstance.prototype.options );
     205                                                        modelInstance.prototype.options = _.extend( modelInstance.prototype.options, routeEndpoint.args );
    206206                                                }
    207207                                        }
    208208