Ticket #7753: 7753.2.diff
File 7753.2.diff, 772 bytes (added by , 16 years ago) |
---|
-
wp-includes/functions.php
140 140 // let the user override the precision only 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 146 149 /**