Changeset 12788 for trunk/wp-admin/maint/repair.php
- Timestamp:
- 01/21/2010 08:31:21 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/maint/repair.php
r12465 r12788 44 44 $repair = $wpdb->get_row("REPAIR TABLE {$wpdb->prefix}$table"); 45 45 if ( 'OK' == $check->Msg_text ) { 46 echo "<br /> Suc essfully repaired the {$wpdb->prefix}$table table.";46 echo "<br /> Successfully repaired the {$wpdb->prefix}$table table."; 47 47 } else { 48 48 echo "<br /> Failed to repair the {$wpdb->prefix}$table table. Error: $check->Msg_text<br />"; … … 58 58 $check = $wpdb->get_row("OPTIMIZE TABLE {$wpdb->prefix}$table"); 59 59 if ( 'OK' == $check->Msg_text || 'Table is already up to date' == $check->Msg_text ) 60 echo "<br /> Suc essfully optimized the {$wpdb->prefix}$table table.";60 echo "<br /> Successfully optimized the {$wpdb->prefix}$table table."; 61 61 else 62 62 echo "<br /> Failed to optimize the {$wpdb->prefix}$table table. Error: $check->Msg_text";
Note: See TracChangeset
for help on using the changeset viewer.