From 158a7f50d8ee5cf58b5bfc067c72c23c26c54e74 Mon Sep 17 00:00:00 2001 From: thisgun Date: Tue, 6 Oct 2020 17:12:11 +0900 Subject: [PATCH] =?UTF-8?q?=EA=B4=80=EB=A6=AC=EC=9E=90=20->=20=EA=B2=8C?= =?UTF-8?q?=EC=8B=9C=ED=8C=90=EC=88=98=EC=A0=95=EC=97=90=EC=84=9C=20?= =?UTF-8?q?=EC=BB=AC=EB=9F=BC=EB=AA=85=20=EC=B6=94=EA=B0=80=20sql=20?= =?UTF-8?q?=EC=BD=94=EB=93=9C=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- adm/board_form.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/adm/board_form.php b/adm/board_form.php index 0fd63b0f3..ec8676883 100644 --- a/adm/board_form.php +++ b/adm/board_form.php @@ -77,11 +77,11 @@ if (!isset($board['bo_mobile_subject'])) { } if (!isset($board['bo_use_captcha'])) { - sql_query(" ALTER TABLE `{$g5['board_table']}` ADD `bo_use_captcha` TINYINT NOT NULL DEFAULT '0' AFTER `bo_use_sns` "); + sql_query(" ALTER TABLE `{$g5['board_table']}` ADD `bo_use_captcha` TINYINT NOT NULL DEFAULT '0' AFTER `bo_use_sns` ", false); } if (!isset($board['bo_select_editor'])) { - sql_query(" ALTER TABLE `{$g5['board_table']}` ADD `bo_select_editor` VARCHAR(50) NOT NULL DEFAULT '' AFTER `bo_use_dhtml_editor` "); + sql_query(" ALTER TABLE `{$g5['board_table']}` ADD `bo_select_editor` VARCHAR(50) NOT NULL DEFAULT '' AFTER `bo_use_dhtml_editor` ", false); } run_event('adm_board_form_before', $board, $w);