Make WordPress Core

Changeset 35907


Ignore:
Timestamp:
12/14/2015 02:03:21 AM (9 years ago)
Author:
johnbillion
Message:

Add a missing @param doc to wp_update_term_count().

See #32246

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/taxonomy.php

    r35906 r35907  
    33743374 * @staticvar array $_deferred
    33753375 *
    3376  * @param int|array $terms    The term_taxonomy_id of the terms.
    3377  * @param string    $taxonomy The context of the term.
     3376 * @param int|array $terms       The term_taxonomy_id of the terms.
     3377 * @param string    $taxonomy    The context of the term.
     3378 * @param bool      $do_deferred Whether to flush the deferred term counts too. Default false.
    33783379 * @return bool If no terms will return false, and if successful will return true.
    33793380 */
    3380 function wp_update_term_count( $terms, $taxonomy, $do_deferred=false ) {
     3381function wp_update_term_count( $terms, $taxonomy, $do_deferred = false ) {
    33813382    static $_deferred = array();
    33823383
Note: See TracChangeset for help on using the changeset viewer.