From 24090d065af04401c029a9ed06a197a1d393832d Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Sun, 7 Dec 2014 20:15:26 +0000 Subject: [PATCH] Fix formatting in the DocBlock for `wp_get_sidebars_widgets()`. See #30315. Built from https://develop.svn.wordpress.org/trunk@30779 git-svn-id: http://core.svn.wordpress.org/trunk@30769 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/version.php | 2 +- wp-includes/widgets.php | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/wp-includes/version.php b/wp-includes/version.php index 955f38b98c..6cfe54bd30 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.1-beta2-30778'; +$wp_version = '4.1-beta2-30779'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. diff --git a/wp-includes/widgets.php b/wp-includes/widgets.php index e24b1b48bf..2e710ccb89 100644 --- a/wp-includes/widgets.php +++ b/wp-includes/widgets.php @@ -1392,7 +1392,7 @@ function is_active_sidebar( $index ) { /* Internal Functions */ /** - * Retrieve full list of sidebars and their widgets. + * Retrieve full list of sidebars and their widget instance IDs. * * Will upgrade sidebar widget list, if needed. Will also save updated list, if * needed. @@ -1400,10 +1400,10 @@ function is_active_sidebar( $index ) { * @since 2.2.0 * @access private * - * @param bool $deprecated Not used (deprecated). + * @param bool $deprecated Not used (argument deprecated). * @return array Upgraded list of widgets to version 3 array format when called from the admin. */ -function wp_get_sidebars_widgets($deprecated = true) { +function wp_get_sidebars_widgets( $deprecated = true ) { if ( $deprecated !== true ) _deprecated_argument( __FUNCTION__, '2.8.1' );