Changeset 19593 for trunk/wp-includes/functions.php
- Timestamp:
- 12/13/2011 11:45:31 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/functions.php
r19417 r19593 1906 1906 $suppress = $wpdb->suppress_errors(); 1907 1907 1908 // Loop over the WP tables. 1908 // Loop over the WP tables. If none exist, then scratch install is allowed. 1909 1909 // If one or more exist, suggest table repair since we got here because the options 1910 1910 // table could not be accessed. … … 1923 1923 1924 1924 // Die with a DB error. 1925 $wpdb->error = sprintf( /*WP_I18N_NO_TABLES*/'One or more database tables are unavailable. 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' ); 1926 1926 dead_db(); 1927 1927 } … … 3786 3786 * Suspend cache invalidation. 3787 3787 * 3788 * Turns cache invalidation on and off. 3789 * every time a post is inserted. 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 3790 3790 * cache when invalidation is suspended. 3791 3791 *
Note: See TracChangeset
for help on using the changeset viewer.