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