Changeset 46144
- Timestamp:
- 09/15/2019 11:53:01 AM (5 years ago)
- Location:
- trunk/src
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-list-table.php
r45932 r46144 240 240 public function __call( $name, $arguments ) { 241 241 if ( in_array( $name, $this->compat_methods ) ) { 242 return call_user_func_array( array( $this, $name ),$arguments );242 return $this->$name( ...$arguments ); 243 243 } 244 244 return false; -
trunk/src/wp-includes/class-wp-comment-query.php
r46087 r46144 125 125 public function __call( $name, $arguments ) { 126 126 if ( 'get_search_sql' === $name ) { 127 return call_user_func_array( array( $this, $name ),$arguments );127 return $this->get_search_sql( ...$arguments ); 128 128 } 129 129 return false; -
trunk/src/wp-includes/class-wp-oembed.php
r45674 r46144 236 236 public function __call( $name, $arguments ) { 237 237 if ( in_array( $name, $this->compat_methods ) ) { 238 return call_user_func_array( array( $this, $name ),$arguments );238 return $this->$name( ...$arguments ); 239 239 } 240 240 return false; -
trunk/src/wp-includes/class-wp-query.php
r45932 r46144 3562 3562 public function __call( $name, $arguments ) { 3563 3563 if ( in_array( $name, $this->compat_methods ) ) { 3564 return call_user_func_array( array( $this, $name ),$arguments );3564 return $this->$name( ...$arguments ); 3565 3565 } 3566 3566 return false; -
trunk/src/wp-includes/class-wp-roles.php
r42870 r46144 102 102 public function __call( $name, $arguments ) { 103 103 if ( '_init' === $name ) { 104 return call_user_func_array( array( $this, $name ),$arguments );104 return $this->_init( ...$arguments ); 105 105 } 106 106 return false; -
trunk/src/wp-includes/class-wp-user-query.php
r45915 r46144 886 886 public function __call( $name, $arguments ) { 887 887 if ( 'get_search_sql' === $name ) { 888 return call_user_func_array( array( $this, $name ),$arguments );888 return $this->get_search_sql( ...$arguments ); 889 889 } 890 890 return false; -
trunk/src/wp-includes/class-wp-user.php
r45623 r46144 445 445 public function __call( $name, $arguments ) { 446 446 if ( '_init_caps' === $name ) { 447 return call_user_func_array( array( $this, $name ),$arguments );447 return $this->_init_caps( ...$arguments ); 448 448 } 449 449 return false; -
trunk/src/wp-includes/class-wp-xmlrpc-server.php
r45932 r46144 178 178 public function __call( $name, $arguments ) { 179 179 if ( '_multisite_getUsersBlogs' === $name ) { 180 return call_user_func_array( array( $this, $name ),$arguments );180 return $this->_multisite_getUsersBlogs( ...$arguments ); 181 181 } 182 182 return false;
Note: See TracChangeset
for help on using the changeset viewer.