From eba9401f897e6eb6c6201cc37020cf276f8ebb86 Mon Sep 17 00:00:00 2001 From: kit rio Date: Tue, 7 Jun 2022 10:21:35 +0900 Subject: [PATCH] =?UTF-8?q?ie6=20=EC=A7=80=EC=9B=90=20=EC=82=AD=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- js/common.js | 15 +-------------- theme/basic/tail.sub.php | 18 +----------------- 2 files changed, 2 insertions(+), 31 deletions(-) diff --git a/js/common.js b/js/common.js index 76286d628..d7ecc7ee9 100644 --- a/js/common.js +++ b/js/common.js @@ -134,20 +134,7 @@ function no_comma(data) function del(href) { if(confirm("한번 삭제한 자료는 복구할 방법이 없습니다.\n\n정말 삭제하시겠습니까?")) { - var iev = -1; - if (navigator.appName == 'Microsoft Internet Explorer') { - var ua = navigator.userAgent; - var re = new RegExp("MSIE ([0-9]{1,}[\.0-9]{0,})"); - if (re.exec(ua) != null) - iev = parseFloat(RegExp.$1); - } - - // IE6 이하에서 한글깨짐 방지 - if (iev != -1 && iev < 7) { - document.location.href = encodeURI(href); - } else { - document.location.href = href; - } + document.location.href = href; } } diff --git a/theme/basic/tail.sub.php b/theme/basic/tail.sub.php index 513656f17..70238485c 100644 --- a/theme/basic/tail.sub.php +++ b/theme/basic/tail.sub.php @@ -4,24 +4,8 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가 - - - -