From 4d5853dcce9e9048bf13c664a81c14608992f9b2 Mon Sep 17 00:00:00 2001 From: chicpro Date: Fri, 22 Mar 2013 16:27:20 +0900 Subject: [PATCH 1/2] =?UTF-8?q?=EA=B2=8C=EC=8B=9C=ED=8C=90=20=EB=B3=B5?= =?UTF-8?q?=EC=82=AC=EC=8B=9C=20=EB=AA=A8=EB=B0=94=EC=9D=BC=20=EC=8A=A4?= =?UTF-8?q?=ED=82=A8=20=EB=88=84=EB=9D=BD=20=EC=98=A4=EB=A5=98=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- adm/board_copy_update.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adm/board_copy_update.php b/adm/board_copy_update.php index 7fc7452bd..ed4e1370d 100644 --- a/adm/board_copy_update.php +++ b/adm/board_copy_update.php @@ -68,7 +68,7 @@ $sql = " insert into {$g4['board_table']} bo_hot = '{$board[bo_hot]}', bo_image_width = '{$board[bo_image_width]}', bo_skin = '{$board['bo_skin']}', - bo_mobile_skin = '{$board['bo_mobile']}', + bo_mobile_skin = '{$board['bo_mobile_skin']}', bo_include_head = '{$board['bo_include_head']}', bo_include_tail = '{$board['bo_include_tail']}', bo_content_head = '".addslashes($board['bo_content_head'])."', From 273ecdc9a5ec46bc0d346d7241211fb660358ee3 Mon Sep 17 00:00:00 2001 From: chicpro Date: Fri, 22 Mar 2013 17:24:52 +0900 Subject: [PATCH 2/2] =?UTF-8?q?ie10=EC=97=90=EC=84=9C=20po=5Fid=20?= =?UTF-8?q?=EA=B0=92=EC=9D=B4=20=EB=84=98=EC=96=B4=EA=B0=80=EC=A7=80=20?= =?UTF-8?q?=EC=95=8A=EB=8A=94=20=EB=AC=B8=EC=A0=9C=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bbs/poll.php | 27 +++++++++++++++++++++++++++ skin/poll/basic/poll.skin.php | 4 +++- 2 files changed, 30 insertions(+), 1 deletion(-) create mode 100644 bbs/poll.php diff --git a/bbs/poll.php b/bbs/poll.php new file mode 100644 index 000000000..176497776 --- /dev/null +++ b/bbs/poll.php @@ -0,0 +1,27 @@ +$value) +{ + $field .= ''."\n"; +} + +$g4['title'] = '투표하기'; +include_once(G4_PATH.'/head.sub.php'); +?> + +
+ +
+ + + + \ No newline at end of file diff --git a/skin/poll/basic/poll.skin.php b/skin/poll/basic/poll.skin.php index b1da218a4..924cdae26 100644 --- a/skin/poll/basic/poll.skin.php +++ b/skin/poll/basic/poll.skin.php @@ -44,7 +44,9 @@ function fpoll_submit(f) return false; } - win_poll(f.action); + var url = "/poll.php"; + f.action = url; + win_poll(url); return true; }