From 620c069fe8646726bccdaf1de6e9520122302ca9 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Wed, 14 Oct 2020 02:10:04 +0000 Subject: [PATCH] General: Move `wp_array_get()` from a separate file to `wp-includes/functions.php`, for consistency. Add missing `@since` tag, adjust the DocBlock per the documentation standards. Follow-up to [49135]. Props isabel_brison, ocean90. Fixes #51461. Built from https://develop.svn.wordpress.org/trunk@49143 git-svn-id: http://core.svn.wordpress.org/trunk@48905 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/array.php | 34 ---------------------------------- wp-includes/functions.php | 32 ++++++++++++++++++++++++++++++++ wp-includes/version.php | 2 +- wp-settings.php | 1 - 4 files changed, 33 insertions(+), 36 deletions(-) delete mode 100644 wp-includes/array.php diff --git a/wp-includes/array.php b/wp-includes/array.php deleted file mode 100644 index 30d55e9d67..0000000000 --- a/wp-includes/array.php +++ /dev/null @@ -1,34 +0,0 @@ - value arguments. * diff --git a/wp-includes/version.php b/wp-includes/version.php index 329c76a10a..d3d39b1b7f 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.6-alpha-49142'; +$wp_version = '5.6-alpha-49143'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. diff --git a/wp-settings.php b/wp-settings.php index 98e4f034a3..8b3cc1297b 100644 --- a/wp-settings.php +++ b/wp-settings.php @@ -179,7 +179,6 @@ require ABSPATH . WPINC . '/class-wp-user-meta-session-tokens.php'; require ABSPATH . WPINC . '/class-wp-metadata-lazyloader.php'; require ABSPATH . WPINC . '/general-template.php'; require ABSPATH . WPINC . '/link-template.php'; -require ABSPATH . WPINC . '/array.php'; require ABSPATH . WPINC . '/author-template.php'; require ABSPATH . WPINC . '/post.php'; require ABSPATH . WPINC . '/class-walker-page.php';