Make WordPress Core

Changeset 24096


Ignore:
Timestamp:
04/25/2013 11:10:36 PM (12 years ago)
Author:
SergeyBiryukov
Message:

Fix typo in phpdoc. props jcastaneda. fixes #24185.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/query.php

    r24034 r24096  
    33 * WordPress Query API
    44 *
    5  * The query API attempts to get which part of WordPress to the user is on. It
    6  * also provides functionality to getting URL query information.
     5 * The query API attempts to get which part of WordPress the user is on. It
     6 * also provides functionality for getting URL query information.
    77 *
    88 * @link http://codex.wordpress.org/The_Loop More information on The Loop.
     
    28102810        global $wpdb;
    28112811
    2812         // Bail if posts is an empty array. Continue if posts is an empty string
     2812        // Bail if posts is an empty array. Continue if posts is an empty string,
    28132813        // null, or false to accommodate caching plugins that fill posts later.
    28142814        if ( $q['no_found_rows'] || ( is_array( $this->posts ) && ! $this->posts ) )
Note: See TracChangeset for help on using the changeset viewer.