Make WordPress Core


Ignore:
Timestamp:
12/13/2011 11:45:31 PM (13 years ago)
Author:
ryan
Message:

Use one space, not two, after trailing punctuation. fixes #19537

File:
1 edited

Legend:

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

    r19417 r19593  
    19061906    $suppress = $wpdb->suppress_errors();
    19071907
    1908     // Loop over the WP tables.  If none exist, then scratch install is allowed.
     1908    // Loop over the WP tables. If none exist, then scratch install is allowed.
    19091909    // If one or more exist, suggest table repair since we got here because the options
    19101910    // table could not be accessed.
     
    19231923
    19241924        // Die with a DB error.
    1925         $wpdb->error = sprintf( /*WP_I18N_NO_TABLES*/'One or more database tables are unavailable.  The database may need to be <a href="%s">repaired</a>.'/*/WP_I18N_NO_TABLES*/, 'maint/repair.php?referrer=is_blog_installed' );
     1925        $wpdb->error = sprintf( /*WP_I18N_NO_TABLES*/'One or more database tables are unavailable. The database may need to be <a href="%s">repaired</a>.'/*/WP_I18N_NO_TABLES*/, 'maint/repair.php?referrer=is_blog_installed' );
    19261926        dead_db();
    19271927    }
     
    37863786 * Suspend cache invalidation.
    37873787 *
    3788  * Turns cache invalidation on and off.  Useful during imports where you don't wont to do invalidations
    3789  * every time a post is inserted.  Callers must be sure that what they are doing won't lead to an inconsistent
     3788 * Turns cache invalidation on and off. Useful during imports where you don't wont to do invalidations
     3789 * every time a post is inserted. Callers must be sure that what they are doing won't lead to an inconsistent
    37903790 * cache when invalidation is suspended.
    37913791 *
Note: See TracChangeset for help on using the changeset viewer.