From eb3730738bbc6e2ed33a8ba50ffea95ec3c18da4 Mon Sep 17 00:00:00 2001
From: jrfnl <jrfnl@users.noreply.github.com>
Date: Fri, 19 Jul 2019 23:49:52 +0200
Subject: [PATCH] Minor simplification of WP_Hook::apply_filters()
---
src/wp-includes/class-wp-hook.php | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/wp-includes/class-wp-hook.php b/src/wp-includes/class-wp-hook.php
index 6620e3f377..deac4ceb5d 100644
|
a
|
b
|
final class WP_Hook implements Iterator, ArrayAccess { |
| 259 | 259 | * |
| 260 | 260 | * @param mixed $value The value to filter. |
| 261 | 261 | * @param array $args Additional parameters to pass to the callback functions. |
| | 262 | * This array is expected to include $value at index 0. |
| 262 | 263 | * @return mixed The filtered value after all hooked functions are applied to it. |
| 263 | 264 | */ |
| 264 | 265 | public function apply_filters( $value, $args ) { |
| … |
… |
final class WP_Hook implements Iterator, ArrayAccess { |
| 282 | 283 | |
| 283 | 284 | // Avoid the array_slice if possible. |
| 284 | 285 | if ( $the_['accepted_args'] == 0 ) { |
| 285 | | $value = call_user_func_array( $the_['function'], array() ); |
| | 286 | $value = call_user_func( $the_['function'] ); |
| 286 | 287 | } elseif ( $the_['accepted_args'] >= $num_args ) { |
| 287 | 288 | $value = call_user_func_array( $the_['function'], $args ); |
| 288 | 289 | } else { |