diff --git src/wp-includes/functions.php src/wp-includes/functions.php
index f46bd2c..01e3084 100644
|
|
function wp_maybe_decline_date( $date ) { |
205 | 205 | } |
206 | 206 | |
207 | 207 | /** |
208 | | * Convert integer number to format based on the locale. |
| 208 | * Convert float number to format based on the locale. |
209 | 209 | * |
210 | 210 | * @since 2.3.0 |
211 | 211 | * |
212 | 212 | * @global WP_Locale $wp_locale |
213 | 213 | * |
214 | | * @param int $number The number to convert based on locale. |
215 | | * @param int $decimals Optional. Precision of the number of decimal places. Default 0. |
| 214 | * @param float $number The number to convert based on locale. |
| 215 | * @param int $decimals Optional. Precision of the number of decimal places. Default 0. |
216 | 216 | * @return string Converted number in string format. |
217 | 217 | */ |
218 | 218 | function number_format_i18n( $number, $decimals = 0 ) { |