diff --git a/module/admin/control.php b/module/admin/control.php index 95a4fe0c4f..ca21460e1e 100644 --- a/module/admin/control.php +++ b/module/admin/control.php @@ -156,7 +156,7 @@ class admin extends control { $tableName = current($table); $result = $this->dbh->query("REPAIR TABLE $tableName")->fetch(); - echo "Repairing TABLE: " . $result->Table . "\t" . $result->Msg_type . ":" . $result->Msg_text . "\n"; + echo "Repairing TABLE: " . $result->Table . (defined('IN_SHELL') ? "\t" : "    ") . $result->Msg_type . ":" . $result->Msg_text . (defined('IN_SHELL') ? "\n" : "
\n"); } }