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