From e17d5accc34f630b041a60b6f3149045efae7d6e Mon Sep 17 00:00:00 2001 From: SergeyBiryukov Date: Sun, 15 Sep 2019 11:31:02 +0000 Subject: [PATCH] Code Modernisation: Replace `call_user_func_array()` in `wp-includes/post-template.php` with a dynamic function call. Props jrf. See #47678. git-svn-id: https://develop.svn.wordpress.org/trunk@46135 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/post-template.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/wp-includes/post-template.php b/src/wp-includes/post-template.php index ddb5180117..939c8f617e 100644 --- a/src/wp-includes/post-template.php +++ b/src/wp-includes/post-template.php @@ -1524,8 +1524,7 @@ function walk_page_tree( $pages, $depth, $current_page, $r ) { } } - $args = array( $pages, $depth, $r, $current_page ); - return call_user_func_array( array( $walker, 'walk' ), $args ); + return $walker->walk( $pages, $depth, $r, $current_page ); } /**