From 25fe7ac3227c4d2798e156867ad3a104eb7fc8aa Mon Sep 17 00:00:00 2001 From: wangyidong Date: Fri, 28 Apr 2017 16:01:27 +0800 Subject: [PATCH] =?UTF-8?q?Finish=20task#2984=20=E4=BC=98=E5=8C=96?= =?UTF-8?q?=E4=B8=8B=E6=95=B0=E6=8D=AE=E5=BA=93=E6=A3=80=E6=9F=A5=E4=BF=AE?= =?UTF-8?q?=E5=A4=8D=E9=A1=B5=E9=9D=A2=E7=9A=84=E6=8E=92=E7=89=88,cost:1?= =?UTF-8?q?=20left:0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- module/admin/control.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"); } }