Make WordPress Core

Changeset 28016


Ignore:
Timestamp:
04/07/2014 10:01:37 PM (11 years ago)
Author:
DrewAPicture
Message:

PHPDoc fixes for functionality in wp-includes/wp-db.php added in 3.9.

See #27700.

File:
1 edited

Legend:

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

    r28002 r28016  
    13001300     * Connect to and select database.
    13011301     *
     1302     * If $allow_bail is false, the lack of database connection will need
     1303     * to be handled manually.
     1304     *
    13021305     * @since 3.0.0
    1303      *
    1304      * @param bool $allow_bail Optional. Allows the function to bail, default true. If this is set
    1305      *                         to false, you will need to handle the lack of database connection
    1306      *                         manually. Available since 3.9.0.
    1307      *
     1306     * @since 3.9.0 $allow_bail parameter added.
     1307     *
     1308     * @param bool $allow_bail Optional. Allows the function to bail. Default true.
    13081309     * @return bool True with a successful connection, false on failure.
    13091310     */
     
    14151416     * the template_redirect hook has been fired, return false instead.
    14161417     *
     1418     * If $allow_bail is false, the lack of database connection will need
     1419     * to be handled manually.
     1420     *
    14171421     * @since 3.9.0
    14181422     *
    1419      * @param bool $allow_bail Optional. Allows the function to bail, default true. If this is set
    1420      *                         to false, you will need to handle the lack of database connection
    1421      *                         manually.
    1422      *
     1423     * @param bool $allow_bail Optional. Allows the function to bail. Default true.
    14231424     * @return bool True if the connection is up.
    14241425     */
     
    15991600
    16001601    /**
    1601      * Internal function to perform the mysql_query call
     1602     * Internal function to perform the mysql_query() call.
    16021603     *
    16031604     * @since 3.9.0
     
    16061607     * @see wpdb::query()
    16071608     *
    1608      * @param string $query The query to run
     1609     * @param string $query The query to run.
    16091610     */
    16101611    private function _do_query( $query ) {
Note: See TracChangeset for help on using the changeset viewer.