Make WordPress Core


Ignore:
Timestamp:
02/24/2010 08:13:23 PM (16 years ago)
Author:
nacin
Message:

Spelling and grammar fun. Fixes #11875 props cnorris23

File:
1 edited

Legend:

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

    r13349 r13382  
    18241824    $wpdb->suppress_errors( $suppress );
    18251825
    1826     $wp_tables = $wpdb->tables( 'all', true );
     1826    $wp_tables = $wpdb->tables( 'all' );
    18271827    // Loop over the WP tables.  If none exist, then scratch install is allowed.
    18281828    // If one or more exist, suggest table repair since we got here because the options
     
    19961996 *
    19971997 * @param string $target Full path to attempt to create.
    1998  * @return bool Whether the path was created or not. True if path already exists.
     1998 * @return bool Whether the path was created. True if path already exists.
    19991999 */
    20002000function wp_mkdir_p( $target ) {
     
    30293029 *
    30303030 * @param string $url
    3031  * @return bool Whether or not SSL access is available
     3031 * @return bool Whether SSL access is available
    30323032 */
    30333033function url_is_accessable_via_ssl($url)
Note: See TracChangeset for help on using the changeset viewer.