From 045d7d3a18da5b39d1c7a1b4bbadf9ad713b716c Mon Sep 17 00:00:00 2001 From: John Blackbourn Date: Wed, 13 Jan 2016 20:33:25 +0000 Subject: [PATCH] I18N: Correct an argument description and return value for `wp_dropdown_languages()`. Props realloc See #35294 Built from https://develop.svn.wordpress.org/trunk@36290 git-svn-id: http://core.svn.wordpress.org/trunk@36257 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/l10n.php | 6 +++--- wp-includes/version.php | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/wp-includes/l10n.php b/wp-includes/l10n.php index a69a718005..de02d5a846 100644 --- a/wp-includes/l10n.php +++ b/wp-includes/l10n.php @@ -956,11 +956,11 @@ function wp_get_pomo_file_data( $po_file ) { * @type array $translations List of available translations. Default result of * wp_get_available_translations(). * @type string $selected Language which should be selected. Default empty. - * @type bool|int $echo Whether to echo or return the generated markup. Accepts 0, 1, or their - * bool equivalents. Default 1. + * @type bool|int $echo Whether to echo the generated markup. Accepts 0, 1, or their + * boolean equivalents. Default 1. * @type bool $show_available_translations Whether to show available translations. Default true. * } - * @return string HTML content only if 'echo' argument is 0. + * @return string HTML content */ function wp_dropdown_languages( $args = array() ) { diff --git a/wp-includes/version.php b/wp-includes/version.php index 0d06070c9a..a513502564 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.5-alpha-36289'; +$wp_version = '4.5-alpha-36290'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.