From 150fc18e9c90a87700d877921619f62b4fa8fd9b Mon Sep 17 00:00:00 2001 From: whitedot Date: Thu, 25 Apr 2013 14:12:32 +0900 Subject: [PATCH 1/2] =?UTF-8?q?=EC=82=AC=EC=9A=A9=EC=9E=90:=20=EC=83=88?= =?UTF-8?q?=EC=B0=BD=20=ED=85=8C=EC=9D=B4=EB=B8=94=20=EC=84=A0=ED=83=9D?= =?UTF-8?q?=EC=9E=90=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- css/default.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/css/default.css b/css/default.css index cc2799ecb..5dfccbaf7 100644 --- a/css/default.css +++ b/css/default.css @@ -219,7 +219,7 @@ input.required:focus {padding:3px 3px 4px;border:0;background:#21272e !important /* 새창 기본 스타일 */ .new_win {} .new_win h1 {margin-bottom:20px;padding:0 20px;height:60px;border-top:3px solid #4e5d60;border-bottom:1px solid #e9e9e9;background:#fff;font-size:1.2em;line-height:5em} -.new_win table {margin:0 auto 20px !important;width:93% !important;background:#fff !important} +.new_win .basic_tbl {margin:0 auto 20px !important;width:93% !important;background:#fff !important} .new_win_ul {margin:-20px 0 20px 0;padding:0 0 0 20px;border-bottom:1px solid #455255;background:#484848;list-style:none;zoom:1} .new_win_ul:after {display:block;visibility:hidden;clear:both;content:""} .new_win_ul li {float:left;margin-left:-1px} From ea0f9bf13e603a8a9289297d7c288d88bbefedc4 Mon Sep 17 00:00:00 2001 From: chicpro Date: Thu, 25 Apr 2013 14:23:35 +0900 Subject: [PATCH 2/2] =?UTF-8?q?=EB=B9=84=ED=9A=8C=EC=9B=90=EC=9D=B4=20?= =?UTF-8?q?=EB=8C=93=EA=B8=80=20=EB=8B=AC=EB=A6=B0=20=EA=B2=8C=EC=8B=9C?= =?UTF-8?q?=EA=B8=80=20=EC=82=AD=EC=A0=9C=ED=95=A0=20=EB=95=8C=EC=9D=98=20?= =?UTF-8?q?=EC=98=A4=EB=A5=98=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bbs/delete.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bbs/delete.php b/bbs/delete.php index 4055e58bb..8524199a3 100644 --- a/bbs/delete.php +++ b/bbs/delete.php @@ -47,7 +47,7 @@ $sql = " select count(*) as cnt from $write_table and wr_is_comment = 0 "; $row = sql_fetch($sql); if ($row['cnt'] && !$is_admin) - alert('이 글과 관련된 답변글이 존재하므로 삭제 할 수 없습니다.'."\n\n".'우선 답변글부터 삭제하여 주십시오.'); + alert('이 글과 관련된 답변글이 존재하므로 삭제 할 수 없습니다.\\n\\n우선 답변글부터 삭제하여 주십시오.'); // 코멘트 달린 원글의 삭제 여부 $sql = " select count(*) as cnt from $write_table @@ -56,7 +56,7 @@ $sql = " select count(*) as cnt from $write_table and wr_is_comment = 1 "; $row = sql_fetch($sql); if ($row['cnt'] >= $board['bo_count_delete'] && !$is_admin) - alert('이 글과 관련된 코멘트가 존재하므로 삭제 할 수 없습니다.'."\n\n".'코멘트가 '.$board['bo_count_delete'].'건 이상 달린 원글은 삭제할 수 없습니다.'); + alert('이 글과 관련된 코멘트가 존재하므로 삭제 할 수 없습니다.\\n\\n코멘트가 '.$board['bo_count_delete'].'건 이상 달린 원글은 삭제할 수 없습니다.'); // 사용자 코드 실행