Make WordPress Core


Ignore:
Timestamp:
04/22/2010 09:39:37 PM (15 years ago)
Author:
westi
Message:

Restore support for floating point numbers in number_format_i18n(). Fixes #10555.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/functions.php

    r14184 r14190  
    132132 *
    133133 * @param int $number The number to convert based on locale.
    134  * @param int $decimals Precision of the number of decimal places. Deprectated.
     134 * @param int $decimals Precision of the number of decimal places.
    135135 * @return string Converted number in string format.
    136136 */
    137 function number_format_i18n( $number, $decimals = null ) {
     137function number_format_i18n( $number, $decimals = 0 ) {
    138138    global $wp_locale;
    139139    $number = (int)$number;
    140     if ( !is_null( $decimals ) ) _deprecated_argument( __FUNCTION__, '3.0' );
    141     $formatted = number_format( $number, 0, null, $wp_locale->number_format['thousands_sep'] );
     140    $formatted = number_format( $number, absint( $decimals ), $wp_locale->number_format['decimal_point'], $wp_locale->number_format['thousands_sep'] );
    142141    return apply_filters( 'number_format_i18n', $formatted );
    143142}
     
    164163 * @return bool|string False on failure. Number string on success.
    165164 */
    166 function size_format( $bytes, $decimals = null ) {
     165function size_format( $bytes, $decimals = 0 ) {
    167166    $quant = array(
    168167        // ========================= Origin ====
     
    173172        'B ' => 1,              // pow( 1024, 0)
    174173    );
    175     if ( !is_null( $decimals ) ) _deprecated_argument( __FUNCTION__, '3.0' );
    176174    foreach ( $quant as $unit => $mag )
    177175        if ( doubleval($bytes) >= $mag )
    178             return number_format_i18n( round( $bytes / $mag ) ) . ' ' . $unit;
     176            return number_format_i18n( $bytes / $mag, $decimals ) . ' ' . $unit;
    179177
    180178    return false;
Note: See TracChangeset for help on using the changeset viewer.