Changeset 46144 for trunk/src/wp-includes/class-wp-query.php
- Timestamp:
- 09/15/2019 11:53:01 AM (6 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/class-wp-query.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
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;
Note: See TracChangeset
for help on using the changeset viewer.