Changeset 11407 for trunk/wp-includes/functions.php
- Timestamp:
- 05/20/2009 04:08:35 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/functions.php
r11383 r11407 141 141 $decimals = ( is_null( $decimals ) ) ? $wp_locale->number_format['decimals'] : intval( $decimals ); 142 142 143 return number_format( $number, $decimals, $wp_locale->number_format['decimal_point'], $wp_locale->number_format['thousands_sep'] ); 143 $num = number_format( $number, $decimals, $wp_locale->number_format['decimal_point'], $wp_locale->number_format['thousands_sep'] ); 144 145 // let the user translate digits from latin to localized language 146 return apply_filters( 'number_format_i18n', $num ); 144 147 } 145 148
Note: See TracChangeset
for help on using the changeset viewer.