Changeset 47902 for trunk/src/wp-includes/plugin.php
- Timestamp:
- 06/03/2020 05:38:56 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/plugin.php
r47550 r47902 232 232 if ( isset( $wp_filter['all'] ) ) { 233 233 $wp_current_filter[] = $tag; 234 $all_args = func_get_args(); 234 $all_args = func_get_args(); // phpcs:ignore PHPCompatibility.FunctionUse.ArgumentFunctionsReportCurrentValue.NeedsInspection 235 235 _wp_call_all_hook( $all_args ); 236 236 } … … 454 454 if ( isset( $wp_filter['all'] ) ) { 455 455 $wp_current_filter[] = $tag; 456 $all_args = func_get_args(); 456 $all_args = func_get_args(); // phpcs:ignore PHPCompatibility.FunctionUse.ArgumentFunctionsReportCurrentValue.NeedsInspection 457 457 _wp_call_all_hook( $all_args ); 458 458 } … … 527 527 if ( isset( $wp_filter['all'] ) ) { 528 528 $wp_current_filter[] = $tag; 529 $all_args = func_get_args(); 529 $all_args = func_get_args(); // phpcs:ignore PHPCompatibility.FunctionUse.ArgumentFunctionsReportCurrentValue.NeedsInspection 530 530 _wp_call_all_hook( $all_args ); 531 531 }
Note: See TracChangeset
for help on using the changeset viewer.