Changeset 28712 for trunk/src/wp-admin/install.php
- Timestamp:
- 06/10/2014 12:43:32 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/install.php
r28396 r28712 75 75 function display_setup_form( $error = null ) { 76 76 global $wpdb; 77 $user_table = ( $wpdb->get_var("SHOW TABLES LIKE '$wpdb->users'") != null ); 77 78 $sql = $wpdb->prepare( "SHOW TABLES LIKE %s", $wpdb->esc_like( $wpdb->users ) ); 79 $user_table = ( $wpdb->get_var( $sql ) != null ); 78 80 79 81 // Ensure that Blogs appear in search engines by default
Note: See TracChangeset
for help on using the changeset viewer.