|
|
@@ -302,7 +302,7 @@ switch ($step) {
|
|
|
$sql = trim($sqlFormat[$i]);
|
|
|
if (strstr($sql, 'CREATE TABLE')) {
|
|
|
preg_match('/CREATE TABLE (IF NOT EXISTS)? `eb_([^ ]*)`/is', $sql, $matches);
|
|
|
- mysqli_query($conn, "DROP TABLE IF EXISTS `$matches[2]");
|
|
|
+ mysqli_query($conn, "DROP TABLE IF EXISTS `$matches[2]`");
|
|
|
$sql = str_replace('`eb_', '`' . $dbPrefix, $sql);//替换表前缀
|
|
|
$ret = mysqli_query($conn, $sql);
|
|
|
if ($ret) {
|