From 22ad47832504410c25d26d43fcefa32bb6c2e16b Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Fri, 26 Feb 2016 17:12:26 +0000 Subject: [PATCH] Docs: Add a missing description for the `&$themes` parameter in the DocBlock for `WP_Theme::sort_by_name()`. See #32246. Built from https://develop.svn.wordpress.org/trunk@36736 git-svn-id: http://core.svn.wordpress.org/trunk@36703 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-wp-theme.php | 4 +++- wp-includes/version.php | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/wp-includes/class-wp-theme.php b/wp-includes/class-wp-theme.php index cae0e1616d..f0cce7f371 100644 --- a/wp-includes/class-wp-theme.php +++ b/wp-includes/class-wp-theme.php @@ -1316,12 +1316,14 @@ final class WP_Theme implements ArrayAccess { } /** - * Sort themes by name. + * Sorts themes by name. * * @since 3.4.0 * * @static * @access public + * + * @param array $themes Array of themes to sort, passed by reference. */ public static function sort_by_name( &$themes ) { if ( 0 === strpos( get_locale(), 'en_' ) ) { diff --git a/wp-includes/version.php b/wp-includes/version.php index 737be09b60..c1534f0e4b 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.5-beta1-36735'; +$wp_version = '4.5-beta1-36736'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.