diff --git src/wp-includes/functions.php src/wp-includes/functions.php
index f5d7d8158c..58720cc351 100644
|
|
|
function number_format_i18n( $number, $decimals = 0 ) { |
| 229 | 229 | * @since 2.8.0 |
| 230 | 230 | * |
| 231 | 231 | * @param string $formatted Converted number in string format. |
| | 232 | * @param int $decimals Precision of the number of decimal places |
| 232 | 233 | */ |
| 233 | | return apply_filters( 'number_format_i18n', $formatted ); |
| | 234 | return apply_filters( 'number_format_i18n', $formatted, $decimals ); |
| 234 | 235 | } |
| 235 | 236 | |
| 236 | 237 | /** |