Make WordPress Core

Ticket #37621: 37621.2.diff

File 37621.2.diff, 3.1 KB (added by flixos90, 8 years ago)
  • src/wp-includes/class-wp-comment-query.php

     
    182182         *     @type array        $meta_query                Meta query clauses to limit retrieved comments by.
    183183         *                                                   See WP_Meta_Query. Default empty.
    184184         *     @type int          $number                    Maximum number of comments to retrieve.
    185          *                                                   Default null (no limit).
     185         *                                                   Default empty (no limit).
    186186         *     @type int          $offset                    Number of comments to offset the query. Used to build
    187187         *                                                   LIMIT clause. Default 0.
    188188         *     @type bool         $no_found_rows             Whether to disable the `SQL_CALC_FOUND_ROWS` query.
  • src/wp-includes/class-wp-network-query.php

     
    103103         *                                              Default false.
    104104         *     @type string       $fields               Network fields to return. Accepts 'ids' (returns an array of network IDs)
    105105         *                                              or empty (returns an array of complete network objects). Default empty.
    106          *     @type int          $number               Maximum number of networks to retrieve. Default null (no limit).
     106         *     @type int          $number               Maximum number of networks to retrieve. Default empty (no limit).
    107107         *     @type int          $offset               Number of networks to offset the query. Used to build LIMIT clause.
    108108         *                                              Default 0.
    109109         *     @type bool         $no_found_rows        Whether to disable the `SQL_CALC_FOUND_ROWS` query. Default true.
  • src/wp-includes/class-wp-site-query.php

     
    113113         *     @type string       $fields            Site fields to return. Accepts 'ids' (returns an array of site IDs)
    114114         *                                           or empty (returns an array of complete site objects). Default empty.
    115115         *     @type int          $ID                A site ID to only return that site. Default empty.
    116          *     @type int          $number            Maximum number of sites to retrieve. Default null (no limit).
     116         *     @type int          $number            Maximum number of sites to retrieve. Default 100.
    117117         *     @type int          $offset            Number of sites to offset the query. Used to build LIMIT clause.
    118118         *                                           Default 0.
    119119         *     @type bool         $no_found_rows     Whether to disable the `SQL_CALC_FOUND_ROWS` query. Default true.