Ticket #48046: 48046.patch
File 48046.patch, 594 bytes (added by , 5 years ago) |
---|
-
src/wp-includes/class-wp-xmlrpc-server.php
732 732 * @return bool if `$args` contains at least $count arguments. 733 733 */ 734 734 protected function minimum_args( $args, $count ) { 735 if ( count( $args ) < $count ) {735 if ( count( (array)$args ) < $count ) { 736 736 $this->error = new IXR_Error( 400, __( 'Insufficient arguments passed to this XML-RPC method.' ) ); 737 737 return false; 738 738 }