Make WordPress Core

Ticket #39344: 39344.patch

File 39344.patch, 637 bytes (added by keesiemeijer, 8 years ago)

Add @since tag

  • src/wp-includes/category-template.php

     
    718718}
    719719
    720720/**
    721  * Default topic count scaling for tag links
     721 * Default topic count scaling for tag links.
    722722 *
    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.
    725727 */
    726728function default_topic_count_scale( $count ) {
    727729        return round(log10($count + 1) * 100);