Ticket #39344: 39344.patch
File 39344.patch, 637 bytes (added by , 8 years ago) |
---|
-
src/wp-includes/category-template.php
718 718 } 719 719 720 720 /** 721 * Default topic count scaling for tag links 721 * Default topic count scaling for tag links. 722 722 * 723 * @param int $count number of posts with that tag 724 * @return int scaled count 723 * @since 2.9.0 724 * 725 * @param int $count Number of posts with that tag. 726 * @return int Scaled count. 725 727 */ 726 728 function default_topic_count_scale( $count ) { 727 729 return round(log10($count + 1) * 100);