mirror of
https://github.com/WordPress/WordPress.git
synced 2025-02-02 05:31:25 +01:00
In WP_Locale::init()
, replace space as a thousands separator with a non-breaking space.
Also replace `' ` and ` ` HTML entities with the actual character, since PHP < 5.4.0 does not allow multiple bytes to be used for decimal points or thousands separators. Fixes #10373. Built from https://develop.svn.wordpress.org/trunk@35372 git-svn-id: http://core.svn.wordpress.org/trunk@35336 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
c9d0c0a9bd
commit
c49ada7d75
@ -176,12 +176,16 @@ class WP_Locale {
|
|||||||
// See http://php.net/number_format
|
// See http://php.net/number_format
|
||||||
|
|
||||||
/* translators: $thousands_sep argument for http://php.net/number_format, default is , */
|
/* translators: $thousands_sep argument for http://php.net/number_format, default is , */
|
||||||
$trans = __('number_format_thousands_sep');
|
$thousands_sep = __( 'number_format_thousands_sep' );
|
||||||
$this->number_format['thousands_sep'] = ('number_format_thousands_sep' == $trans) ? ',' : $trans;
|
// Replace space with a non-breaking space to avoid wrapping. Also replace entities with actual character.
|
||||||
|
$thousands_sep = str_replace( array( ' ', ' ', ' ' ), "\xA0", $thousands_sep );
|
||||||
|
|
||||||
|
$this->number_format['thousands_sep'] = ( 'number_format_thousands_sep' === $thousands_sep ) ? ',' : $thousands_sep;
|
||||||
|
|
||||||
/* translators: $dec_point argument for http://php.net/number_format, default is . */
|
/* translators: $dec_point argument for http://php.net/number_format, default is . */
|
||||||
$trans = __('number_format_decimal_point');
|
$decimal_point = __( 'number_format_decimal_point' );
|
||||||
$this->number_format['decimal_point'] = ('number_format_decimal_point' == $trans) ? '.' : $trans;
|
|
||||||
|
$this->number_format['decimal_point'] = ( 'number_format_decimal_point' === $decimal_point ) ? '.' : $decimal_point;
|
||||||
|
|
||||||
// Set text direction.
|
// Set text direction.
|
||||||
if ( isset( $GLOBALS['text_direction'] ) )
|
if ( isset( $GLOBALS['text_direction'] ) )
|
||||||
|
Loading…
Reference in New Issue
Block a user