From face61bb06e4dc37b059a9c506b8af61055fb7d8 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Thu, 21 Jan 2010 20:31:21 +0000 Subject: [PATCH] Typo fix. Props nacin. fixes #11715 git-svn-id: https://develop.svn.wordpress.org/trunk@12788 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/maint/repair.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/maint/repair.php b/wp-admin/maint/repair.php index 9f2c26f14d..96e387e1bc 100644 --- a/wp-admin/maint/repair.php +++ b/wp-admin/maint/repair.php @@ -43,7 +43,7 @@ if ( !defined('WP_ALLOW_REPAIR') ) { echo "

The {$wpdb->prefix}$table table is not okay. It is reporting the following error: $check->Msg_text. WordPress will attempt to repair this table…"; $repair = $wpdb->get_row("REPAIR TABLE {$wpdb->prefix}$table"); if ( 'OK' == $check->Msg_text ) { - echo "
    Sucessfully repaired the {$wpdb->prefix}$table table."; + echo "
    Successfully repaired the {$wpdb->prefix}$table table."; } else { echo "
    Failed to repair the {$wpdb->prefix}$table table. Error: $check->Msg_text
"; $problems["{$wpdb->prefix}$table"] = $check->Msg_text; @@ -57,7 +57,7 @@ if ( !defined('WP_ALLOW_REPAIR') ) { } else { $check = $wpdb->get_row("OPTIMIZE TABLE {$wpdb->prefix}$table"); if ( 'OK' == $check->Msg_text || 'Table is already up to date' == $check->Msg_text ) - echo "
    Sucessfully optimized the {$wpdb->prefix}$table table."; + echo "
    Successfully optimized the {$wpdb->prefix}$table table."; else echo "
    Failed to optimize the {$wpdb->prefix}$table table. Error: $check->Msg_text"; }