From 2750f0cec7aa63618fe4e8a540b0ae041b0b0fbb Mon Sep 17 00:00:00 2001 From: Scott Taylor Date: Mon, 3 Nov 2014 03:40:22 +0000 Subject: [PATCH] In `WP_Locale`, declare `$number_format` as a property. See #30224. Built from https://develop.svn.wordpress.org/trunk@30183 git-svn-id: http://core.svn.wordpress.org/trunk@30183 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/locale.php | 5 +++++ wp-includes/version.php | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/wp-includes/locale.php b/wp-includes/locale.php index 0def2765a1..73f282c300 100644 --- a/wp-includes/locale.php +++ b/wp-includes/locale.php @@ -84,6 +84,11 @@ class WP_Locale { */ var $text_direction = 'ltr'; + /** + * @var array + */ + var $number_format; + /** * Sets up the translated strings and object properties. * diff --git a/wp-includes/version.php b/wp-includes/version.php index b473ea9b1c..3c4026ead5 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.1-alpha-30182'; +$wp_version = '4.1-alpha-30183'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.