From 5845a0c3729a1cd384a660046c9ff84b7b2e3aaa Mon Sep 17 00:00:00 2001 From: Scott Taylor Date: Tue, 26 May 2015 18:59:25 +0000 Subject: [PATCH] Add missing doc blocks to `locale.php` See #32444. Built from https://develop.svn.wordpress.org/trunk@32608 git-svn-id: http://core.svn.wordpress.org/trunk@32578 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/locale.php | 15 ++++++++++++--- wp-includes/version.php | 2 +- 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/wp-includes/locale.php b/wp-includes/locale.php index b3f4b455e1..1a630de720 100644 --- a/wp-includes/locale.php +++ b/wp-includes/locale.php @@ -91,6 +91,9 @@ class WP_Locale { * * @since 2.1.0 * @access private + * + * @global string $text_direction + * @global string $wp_version */ function init() { // The Weekdays @@ -301,6 +304,12 @@ class WP_Locale { * @deprecated For backwards compatibility only. * @access private * + * @global array $weekday + * @global array $weekday_initial + * @global array $weekday_abbrev + * @global array $month + * @global array $month_abbrev + * * @since 2.1.0 */ function register_globals() { @@ -314,10 +323,7 @@ class WP_Locale { /** * Constructor which calls helper methods to set up object variables * - * @uses WP_Locale::init() - * @uses WP_Locale::register_globals() * @since 2.1.0 - * */ function __construct() { $this->init(); @@ -357,6 +363,9 @@ class WP_Locale { * Checks if current locale is RTL. * * @since 3.0.0 + * + * @global WP_Locale $wp_locale + * * @return bool Whether locale is RTL. */ function is_rtl() { diff --git a/wp-includes/version.php b/wp-includes/version.php index 640830757e..ceb3e51e5b 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.3-alpha-32607'; +$wp_version = '4.3-alpha-32608'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.