From a219b09cb563450e7c65d71ae83f7ea5e1279250 Mon Sep 17 00:00:00 2001 From: Kentaro Ohkouchi Date: Mon, 27 Dec 2021 09:54:52 +0900 Subject: [PATCH] Fix typo fixes #503 --- html/install/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html/install/index.php b/html/install/index.php index 97c2a6649c..7974cb3304 100644 --- a/html/install/index.php +++ b/html/install/index.php @@ -846,7 +846,7 @@ function lfExecuteSQL($filepath, $arrDsn, $disp_err = true) // XXX SC_Query を使うようにすれば、この処理は不要となる if ($arrDsn['phptype'] === 'mysqli') { if ($objDB->getConnection()->server_version >= 50705) { - $objDB->exec('SET SESSION defaut_storage_engine = InnoDB'); + $objDB->exec('SET SESSION default_storage_engine = InnoDB'); } else { $objDB->exec('SET SESSION storage_engine = InnoDB'); }