Make WordPress Core


Ignore:
Timestamp:
01/21/2010 08:31:21 PM (15 years ago)
Author:
ryan
Message:

Typo fix. Props nacin. fixes #11715

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/maint/repair.php

    r12465 r12788  
    4444            $repair = $wpdb->get_row("REPAIR TABLE {$wpdb->prefix}$table");
    4545            if ( 'OK' == $check->Msg_text ) {
    46                 echo "<br />&nbsp;&nbsp;&nbsp;&nbsp;Sucessfully repaired the {$wpdb->prefix}$table table.";
     46                echo "<br />&nbsp;&nbsp;&nbsp;&nbsp;Successfully repaired the {$wpdb->prefix}$table table.";
    4747            } else {
    4848                echo "<br />&nbsp;&nbsp;&nbsp;&nbsp;Failed to repair the {$wpdb->prefix}$table table. Error: $check->Msg_text<br />";
     
    5858                $check = $wpdb->get_row("OPTIMIZE TABLE {$wpdb->prefix}$table");
    5959                if ( 'OK' == $check->Msg_text || 'Table is already up to date' == $check->Msg_text )
    60                     echo "<br />&nbsp;&nbsp;&nbsp;&nbsp;Sucessfully optimized the {$wpdb->prefix}$table table.";
     60                    echo "<br />&nbsp;&nbsp;&nbsp;&nbsp;Successfully optimized the {$wpdb->prefix}$table table.";
    6161                else
    6262                    echo "<br />&nbsp;&nbsp;&nbsp;&nbsp;Failed to optimize the {$wpdb->prefix}$table table. Error: $check->Msg_text";
Note: See TracChangeset for help on using the changeset viewer.