diff --git a/AvocadoEdition_Light/lib/visit.lib.php b/AvocadoEdition_Light/lib/visit.lib.php
index 6551b73..234e67a 100644
--- a/AvocadoEdition_Light/lib/visit.lib.php
+++ b/AvocadoEdition_Light/lib/visit.lib.php
@@ -1,81 +1,114 @@
";
+ //echo $agent; echo " ";
- if (preg_match("/msie ([1-9][0-9]\.[0-9]+)/", $agent, $m)) { $s = 'MSIE '.$m[1]; }
- else if(preg_match("/firefox/", $agent)) { $s = "FireFox"; }
- else if(preg_match("/chrome/", $agent)) { $s = "Chrome"; }
- else if(preg_match("/x11/", $agent)) { $s = "Netscape"; }
- else if(preg_match("/opera/", $agent)) { $s = "Opera"; }
- else if(preg_match("/gec/", $agent)) { $s = "Gecko"; }
- else if(preg_match("/bot|slurp/", $agent)) { $s = "Robot"; }
- else if(preg_match("/internet explorer/", $agent)) { $s = "IE"; }
- else if(preg_match("/mozilla/", $agent)) { $s = "Mozilla"; }
- else { $s = "기타"; }
+ if (preg_match("/msie ([1-9][0-9]\.[0-9]+)/", $agent, $m)) {
+ $s = 'MSIE ' . $m[1];
+ } else if (preg_match("/firefox/", $agent)) {
+ $s = "FireFox";
+ } else if (preg_match("/chrome/", $agent)) {
+ $s = "Chrome";
+ } else if (preg_match("/x11/", $agent)) {
+ $s = "Netscape";
+ } else if (preg_match("/opera/", $agent)) {
+ $s = "Opera";
+ } else if (preg_match("/gec/", $agent)) {
+ $s = "Gecko";
+ } else if (preg_match("/bot|slurp/", $agent)) {
+ $s = "Robot";
+ } else if (preg_match("/internet explorer/", $agent)) {
+ $s = "IE";
+ } else if (preg_match("/mozilla/", $agent)) {
+ $s = "Mozilla";
+ } else {
+ $s = "기타";
+ }
- return $s;
+ return $s;
}
function get_os($agent)
{
- $agent = strtolower($agent);
+ $agent = strtolower($agent);
- //echo $agent; echo " ";
+ //echo $agent; echo " ";
- if (preg_match("/windows 98/", $agent)) { $s = "98"; }
- else if(preg_match("/windows 95/", $agent)) { $s = "95"; }
- else if(preg_match("/windows nt 4\.[0-9]*/", $agent)) { $s = "NT"; }
- else if(preg_match("/windows nt 5\.0/", $agent)) { $s = "2000"; }
- else if(preg_match("/windows nt 5\.1/", $agent)) { $s = "XP"; }
- else if(preg_match("/windows nt 5\.2/", $agent)) { $s = "2003"; }
- else if(preg_match("/windows nt 6\.0/", $agent)) { $s = "Vista"; }
- else if(preg_match("/windows nt 6\.1/", $agent)) { $s = "Windows7"; }
- else if(preg_match("/windows nt 6\.2/", $agent)) { $s = "Windows8"; }
- else if(preg_match("/windows 9x/", $agent)) { $s = "ME"; }
- else if(preg_match("/windows ce/", $agent)) { $s = "CE"; }
- else if(preg_match("/mac/", $agent)) { $s = "MAC"; }
- else if(preg_match("/linux/", $agent)) { $s = "Linux"; }
- else if(preg_match("/sunos/", $agent)) { $s = "sunOS"; }
- else if(preg_match("/irix/", $agent)) { $s = "IRIX"; }
- else if(preg_match("/phone/", $agent)) { $s = "Phone"; }
- else if(preg_match("/bot|slurp/", $agent)) { $s = "Robot"; }
- else if(preg_match("/internet explorer/", $agent)) { $s = "IE"; }
- else if(preg_match("/mozilla/", $agent)) { $s = "Mozilla"; }
- else { $s = "기타"; }
+ if (preg_match("/windows 98/", $agent)) {
+ $s = "98";
+ } else if (preg_match("/windows 95/", $agent)) {
+ $s = "95";
+ } else if (preg_match("/windows nt 4\.[0-9]*/", $agent)) {
+ $s = "NT";
+ } else if (preg_match("/windows nt 5\.0/", $agent)) {
+ $s = "2000";
+ } else if (preg_match("/windows nt 5\.1/", $agent)) {
+ $s = "XP";
+ } else if (preg_match("/windows nt 5\.2/", $agent)) {
+ $s = "2003";
+ } else if (preg_match("/windows nt 6\.0/", $agent)) {
+ $s = "Vista";
+ } else if (preg_match("/windows nt 6\.1/", $agent)) {
+ $s = "Windows7";
+ } else if (preg_match("/windows nt 6\.2/", $agent)) {
+ $s = "Windows8";
+ } else if (preg_match("/windows 9x/", $agent)) {
+ $s = "ME";
+ } else if (preg_match("/windows ce/", $agent)) {
+ $s = "CE";
+ } else if (preg_match("/mac/", $agent)) {
+ $s = "MAC";
+ } else if (preg_match("/linux/", $agent)) {
+ $s = "Linux";
+ } else if (preg_match("/sunos/", $agent)) {
+ $s = "sunOS";
+ } else if (preg_match("/irix/", $agent)) {
+ $s = "IRIX";
+ } else if (preg_match("/phone/", $agent)) {
+ $s = "Phone";
+ } else if (preg_match("/bot|slurp/", $agent)) {
+ $s = "Robot";
+ } else if (preg_match("/internet explorer/", $agent)) {
+ $s = "IE";
+ } else if (preg_match("/mozilla/", $agent)) {
+ $s = "Mozilla";
+ } else {
+ $s = "기타";
+ }
- return $s;
+ return $s;
}
diff --git a/AvocadoEdition_Light/skin/board/mmb/action/log.H.skin.php b/AvocadoEdition_Light/skin/board/mmb/action/log.H.skin.php
index fd93945..58dd9c7 100644
--- a/AvocadoEdition_Light/skin/board/mmb/action/log.H.skin.php
+++ b/AvocadoEdition_Light/skin/board/mmb/action/log.H.skin.php
@@ -1,22 +1,23 @@
-
-
-
-
-
-
- =$data_log[3]?> =j($data_log[3], '을')?> 제작했습니다!
-
-
-
-
- 제작에 실패하였습니다.
-
-
+
+
+
+
+
+
+ = $data_log[3] ?> = j($data_log[3], '을') ?> 제작했습니다!
+
+
+
+
+ 제작에 실패하였습니다.
+
+
diff --git a/AvocadoEdition_Light/skin/board/mmb/action/log.S.skin.php b/AvocadoEdition_Light/skin/board/mmb/action/log.S.skin.php
index 6160f1d..261dd46 100644
--- a/AvocadoEdition_Light/skin/board/mmb/action/log.S.skin.php
+++ b/AvocadoEdition_Light/skin/board/mmb/action/log.S.skin.php
@@ -1,22 +1,23 @@
-
-
-
-
-
-
- 탐색하여 =$data_log[3]?> =j($data_log[3], '을')?> 획득했습니다!
-
-
-
-
- 탐색했지만 아무것도 얻지 못했습니다.
-
-
+
+
+
+
+
+
+ 탐색하여 = $data_log[3] ?> = j($data_log[3], '을') ?> 획득했습니다!
+
+
+
+
+ 탐색했지만 아무것도 얻지 못했습니다.
+
+
diff --git a/AvocadoEdition_Light/skin/board/mmb/action/log.item.skin.php b/AvocadoEdition_Light/skin/board/mmb/action/log.item.skin.php
index 58bfef1..9341be5 100644
--- a/AvocadoEdition_Light/skin/board/mmb/action/log.item.skin.php
+++ b/AvocadoEdition_Light/skin/board/mmb/action/log.item.skin.php
@@ -1,41 +1,44 @@
-
-
-
-
-
-
- =$item_log[2]?> =j($item_log[2], '을')?> 사용했습니다! (=$item_log[6]?>)
-
-
-
-
-
-
-
-
- =$item_log[2]?> =j($item_log[2], '을')?> 사용해서 =$item_log[4]?> =j($item_log[4], '을')?> 획득하였습니다!
-
-
+
+
+
+
+
+
+ = $item_log[2] ?> = j($item_log[2], '을') ?> 사용했습니다! (= $item_log[6] ?>)
+
+
+
+
+
+
+
+
+ = $item_log[2] ?> = j($item_log[2], '을') ?> 사용해서
+ = $item_log[4] ?> = j($item_log[4], '을') ?> 획득하였습니다!
+
+
-
-
-
-
- =$item_log[2]?> =j($item_log[2], '을')?> 사용했지만 아무것도 획득하지 못했습니다 ...
-
-
+
+
+
+
+ = $item_log[2] ?> = j($item_log[2], '을') ?> 사용했지만 아무것도 획득하지 못했습니다 ...
+
+
diff --git a/AvocadoEdition_Light/skin/board/mmb/ajax/add_favorite.php b/AvocadoEdition_Light/skin/board/mmb/ajax/add_favorite.php
index cbfb1f6..00b140c 100644
--- a/AvocadoEdition_Light/skin/board/mmb/ajax/add_favorite.php
+++ b/AvocadoEdition_Light/skin/board/mmb/ajax/add_favorite.php
@@ -1,17 +1,17 @@
.item').each(function(){
- var log_data_width = $(this).find('.ui-pic').data('width');
- var log_width = $(this).find('.pic-data').find('img').width();
-
- if(log_data_width < log_width && log_width > 300) {
- log_data_width = log_width;
- }
+ $('#log_list > .item').each(function () {
+ var log_data_width = $(this).find('.ui-pic').data('width');
+ var log_width = $(this).find('.pic-data').find('img').width();
- var comment_width = $('#log_list .item-inner').width() - log_data_width + 10;
- if(comment_width > 320) {
- $(this).removeClass('both');
- $(this).find('.ui-comment').css('width', comment_width - 20 + "px");
- } else {
- $(this).addClass('both');
- $(this).find('.ui-comment').css('width', "auto");
- }
- });
+ if (log_data_width < log_width && log_width > 300) {
+ log_data_width = log_width;
+ }
+
+ var comment_width = $('#log_list .item-inner').width() - log_data_width + 10;
+ if (comment_width > 320) {
+ $(this).removeClass('both');
+ $(this).find('.ui-comment').css('width', comment_width - 20 + "px");
+ } else {
+ $(this).addClass('both');
+ $(this).find('.ui-comment').css('width', "auto");
+ }
+ });
};
-$('.new_win').on('click', function() {
- var target = $(this).attr('href');
- window.open(target, 'emoticon', "width=400, height=600");
- return false;
-});
\ No newline at end of file
+$('.new_win').on('click', function () {
+ var target = $(this).attr('href');
+ window.open(target, 'emoticon', "width=400, height=600");
+ return false;
+});
diff --git a/AvocadoEdition_Light/skin/member/basic/formmail.skin.php b/AvocadoEdition_Light/skin/member/basic/formmail.skin.php
index e57be62..01f895a 100644
--- a/AvocadoEdition_Light/skin/member/basic/formmail.skin.php
+++ b/AvocadoEdition_Light/skin/member/basic/formmail.skin.php
@@ -1,100 +1,101 @@
', 0);
+add_stylesheet(' ', 0);
?>
-
\ No newline at end of file
+
diff --git a/AvocadoEdition_Light/skin/member/basic/login.admin.skin.php b/AvocadoEdition_Light/skin/member/basic/login.admin.skin.php
index 927ab26..6fa423b 100644
--- a/AvocadoEdition_Light/skin/member/basic/login.admin.skin.php
+++ b/AvocadoEdition_Light/skin/member/basic/login.admin.skin.php
@@ -1,83 +1,84 @@
', 0);
+add_stylesheet(' ', 0);
?>
-
-
-
-
- =$config['cf_title']?> 관리자 로그인
-
-
- AVOCADO EDITION Ver.=G5_GNUBOARD_VER?>
-
-
- 관리자 비번을 잊을 시, DB 접속을 통해 직접 변경 하여야 합니다.
- 최대한 비밀번호를 잊지 않도록 조심해 주시길 바랍니다.
- DB 관리툴은 호스팅 업체에 문의해 주시길 바랍니다.
-
-
-
-
+
+
+
+
+ = $config['cf_title'] ?> 관리자 로그인
+
+
+ AVOCADO EDITION Ver.= G5_GNUBOARD_VER ?>
+
+
+ 관리자 비번을 잊을 시, DB 접속을 통해 직접 변경 하여야 합니다.
+ 최대한 비밀번호를 잊지 않도록 조심해 주시길 바랍니다.
+ DB 관리툴은 호스팅 업체에 문의해 주시길 바랍니다.
+
+
+
+
-
-
-
-
\ No newline at end of file
+
diff --git a/AvocadoEdition_Light/skin/member/basic/login.skin.php b/AvocadoEdition_Light/skin/member/basic/login.skin.php
index b293d48..c30b86a 100644
--- a/AvocadoEdition_Light/skin/member/basic/login.skin.php
+++ b/AvocadoEdition_Light/skin/member/basic/login.skin.php
@@ -1,50 +1,55 @@
', 0);
+ add_stylesheet(' ', 0);
-/*********** Logo Data ************/
-$logo = get_logo();
-$m_logo = get_logo();
+ /*********** Logo Data ************/
+ $logo = get_logo();
+ $m_logo = get_logo();
-$logo_data = "";
-if($logo) $logo_data .= " ";
-/*********************************/
-?>
-
-
-
-
- =$logo_data?>
-
-
-
-
-
-
-
-
+ $logo_data = "";
+ if ($logo)
+ $logo_data .= " ";
+ /*********************************/
+ ?>
+
+
+
+
+ = $logo_data ?>
+
+
+
+
+
+
+
+
diff --git a/AvocadoEdition_Light/skin/member/basic/login_check.skin.php b/AvocadoEdition_Light/skin/member/basic/login_check.skin.php
index 95608c8..cc15b11 100644
--- a/AvocadoEdition_Light/skin/member/basic/login_check.skin.php
+++ b/AvocadoEdition_Light/skin/member/basic/login_check.skin.php
@@ -1,5 +1,6 @@
+
diff --git a/AvocadoEdition_Light/skin/member/basic/member_confirm.skin.php b/AvocadoEdition_Light/skin/member/basic/member_confirm.skin.php
index f24b3fd..0fa1830 100644
--- a/AvocadoEdition_Light/skin/member/basic/member_confirm.skin.php
+++ b/AvocadoEdition_Light/skin/member/basic/member_confirm.skin.php
@@ -1,54 +1,56 @@
', 0);
+if (!defined('_GNUBOARD_'))
+ exit; // 개별 페이지 접근 불가
+add_stylesheet(' ', 0);
?>
-
비밀번호 확인
-
-
-
- 비밀번호를 한번 더 입력해주세요.
-
- 비밀번호를 입력하시면 회원탈퇴가 완료됩니다.
-
- 회원님의 정보를 안전하게 보호하기 위해 비밀번호를 한번 더 확인합니다.
-
-
-
-
+
+
+
-
\ No newline at end of file
+
diff --git a/AvocadoEdition_Light/skin/member/basic/memo.skin.php b/AvocadoEdition_Light/skin/member/basic/memo.skin.php
index 48e6e05..20a8f95 100644
--- a/AvocadoEdition_Light/skin/member/basic/memo.skin.php
+++ b/AvocadoEdition_Light/skin/member/basic/memo.skin.php
@@ -1,10 +1,11 @@
', 0);
+add_stylesheet(' ', 0);
?>
diff --git a/AvocadoEdition_Light/skin/member/basic/memo_form.skin.php b/AvocadoEdition_Light/skin/member/basic/memo_form.skin.php
index 013b8db..ae55af0 100644
--- a/AvocadoEdition_Light/skin/member/basic/memo_form.skin.php
+++ b/AvocadoEdition_Light/skin/member/basic/memo_form.skin.php
@@ -1,47 +1,50 @@
', 0);
+add_stylesheet(' ', 0);
?>
-
\ No newline at end of file
+
diff --git a/AvocadoEdition_Light/skin/member/basic/memo_view.skin.php b/AvocadoEdition_Light/skin/member/basic/memo_view.skin.php
index 28257c8..af6370e 100644
--- a/AvocadoEdition_Light/skin/member/basic/memo_view.skin.php
+++ b/AvocadoEdition_Light/skin/member/basic/memo_view.skin.php
@@ -1,4 +1,4 @@
\ No newline at end of file
+if (!defined('_GNUBOARD_'))
+ exit; // 개별 페이지 접근 불가
+goto_url('./memo_form.php?me_recv_mb_id=' . $mb['mb_id']);
diff --git a/AvocadoEdition_Light/skin/member/basic/password.skin.php b/AvocadoEdition_Light/skin/member/basic/password.skin.php
index 1ec4b2b..99a3369 100644
--- a/AvocadoEdition_Light/skin/member/basic/password.skin.php
+++ b/AvocadoEdition_Light/skin/member/basic/password.skin.php
@@ -1,57 +1,63 @@
', 0);
+add_stylesheet(' ', 0);
?>
-
비밀번호 확인
-
-
-
-
- 작성자만 글을 수정할 수 있습니다.
- 작성자 본인이라면, 글 작성시 입력한 비밀번호를 입력하여 글을 수정할 수 있습니다.
-
- 작성자만 글을 삭제할 수 있습니다.
- 작성자 본인이라면, 글 작성시 입력한 비밀번호를 입력하여 글을 삭제할 수 있습니다.
-
- 비밀글 기능으로 보호된 글입니다.
- 작성자와 관리자만 열람하실 수 있습니다. 본인이라면 비밀번호를 입력하세요.
-
-
-
+
+
+
-
\ No newline at end of file
+
diff --git a/AvocadoEdition_Light/skin/member/basic/password_lost.skin.php b/AvocadoEdition_Light/skin/member/basic/password_lost.skin.php
index b9062ac..c110ab1 100644
--- a/AvocadoEdition_Light/skin/member/basic/password_lost.skin.php
+++ b/AvocadoEdition_Light/skin/member/basic/password_lost.skin.php
@@ -1,47 +1,48 @@
', 0);
+add_stylesheet(' ', 0);
?>
-
\ No newline at end of file
+
diff --git a/AvocadoEdition_Light/skin/member/basic/point.skin.php b/AvocadoEdition_Light/skin/member/basic/point.skin.php
index d0e754f..c8277b9 100644
--- a/AvocadoEdition_Light/skin/member/basic/point.skin.php
+++ b/AvocadoEdition_Light/skin/member/basic/point.skin.php
@@ -1,26 +1,27 @@
', 0);
+add_stylesheet(' ', 0);
?>
-
+
-
-
- 포인트 사용내역 목록
-
+
+
+ 포인트 사용내역 목록
+
- 일시
- 내용
- 만료일
- 지급포인트
- 사용포인트
+ 일시
+ 내용
+ 만료일
+ 지급포인트
+ 사용포인트
-
-
+
+
',
{$sql_order}
limit {$from_record}, {$rows} ";
$result = sql_query($sql);
- for ($i=0; $row=sql_fetch_array($result); $i++) {
- $point1 = $point2 = 0;
- if ($row['po_point'] > 0) {
- $point1 = '+' .number_format($row['po_point']);
- $sum_point1 += $row['po_point'];
- } else {
- $point2 = number_format($row['po_point']);
- $sum_point2 += $row['po_point'];
- }
+ for ($i = 0; $row = sql_fetch_array($result); $i++) {
+ $point1 = $point2 = 0;
+ if ($row['po_point'] > 0) {
+ $point1 = '+' . number_format($row['po_point']);
+ $sum_point1 += $row['po_point'];
+ } else {
+ $point2 = number_format($row['po_point']);
+ $sum_point2 += $row['po_point'];
+ }
- $po_content = $row['po_content'];
+ $po_content = $row['po_content'];
- $expr = '';
- if($row['po_expired'] == 1)
- $expr = ' txt_expired';
- ?>
-
+ $expr = '';
+ if ($row['po_expired'] == 1)
+ $expr = ' txt_expired';
+ ?>
+
-
+
만료
-
+
-
-
+ 자료가 없습니다. ';
+ echo '자료가 없습니다. ';
else {
- if ($sum_point1 > 0)
- $sum_point1 = "+" . number_format($sum_point1);
- $sum_point2 = number_format($sum_point2);
+ if ($sum_point1 > 0)
+ $sum_point1 = "+" . number_format($sum_point1);
+ $sum_point2 = number_format($sum_point2);
}
?>
-
-
+
+
- 소계
-
-
+ 소계
+
+
- 보유포인트
-
+ 보유포인트
+
-
-
-
+
+
+
-
+
-
창닫기
-
\ No newline at end of file
+ 창닫기
+
diff --git a/AvocadoEdition_Light/skin/member/basic/profile.skin.php b/AvocadoEdition_Light/skin/member/basic/profile.skin.php
index 0b0535f..1629b71 100644
--- a/AvocadoEdition_Light/skin/member/basic/profile.skin.php
+++ b/AvocadoEdition_Light/skin/member/basic/profile.skin.php
@@ -1,50 +1,53 @@
', 0);
+add_stylesheet(' ', 0);
?>
-
님의 프로필
+
님의 프로필
-
-
-
+
+
+
- 회원권한
-
+ 회원권한
+
- 포인트
-
+ 포인트
+
-
-
+
+
홈페이지
-
-
+
+
- 회원가입일
- = $mb['mb_level']) ? substr($mb['mb_datetime'],0,10) ." (".number_format($mb_reg_after)." 일)" : "알 수 없음"; ?>
+ 회원가입일
+
+ = $mb['mb_level']) ? substr($mb['mb_datetime'], 0, 10) . " (" . number_format($mb_reg_after) . " 일)" : "알 수 없음"; ?>
+
- 최종접속일
- = $mb['mb_level']) ? $mb['mb_today_login'] : "알 수 없음"; ?>
+ 최종접속일
+ = $mb['mb_level']) ? $mb['mb_today_login'] : "알 수 없음"; ?>
-
-
-
+
+
+
-
+
-
- 창닫기
-
+
+ 창닫기
+
-
\ No newline at end of file
+
diff --git a/AvocadoEdition_Light/skin/member/basic/register.skin.php b/AvocadoEdition_Light/skin/member/basic/register.skin.php
index 8861265..6b92f59 100644
--- a/AvocadoEdition_Light/skin/member/basic/register.skin.php
+++ b/AvocadoEdition_Light/skin/member/basic/register.skin.php
@@ -1,70 +1,69 @@
', 0);
+if (!defined('_GNUBOARD_'))
+ exit; // 개별 페이지 접근 불가
+add_stylesheet(' ', 0);
?>
-
- 오너 동의 사항
- 《 Community Joining Assent 》
-
+
+ 오너 동의 사항
+ 《 Community Joining Assent 》
+
-
-
-
+
+
+
-
+
-
+
-
- 계정생성
-
+
+ 계정생성
+
-
+
-
+
-
-
diff --git a/AvocadoEdition_Light/skin/member/basic/register_form.skin.php b/AvocadoEdition_Light/skin/member/basic/register_form.skin.php
index 25bca8d..d0b822d 100644
--- a/AvocadoEdition_Light/skin/member/basic/register_form.skin.php
+++ b/AvocadoEdition_Light/skin/member/basic/register_form.skin.php
@@ -1,133 +1,143 @@
', 0);
+if (!defined('_GNUBOARD_'))
+ exit; // 개별 페이지 접근 불가
+add_stylesheet(' ', 0);
?>
-
-
+
+
-
- 계정 정보 =$w == '' ? "등록" : "수정"?>
- 《 Community Register Form 》
-
+
+ 계정 정보 = $w == '' ? "등록" : "수정" ?>
+ 《 Community Register Form 》
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
- date("Y-m-d", G5_SERVER_TIME - ($config['cf_nick_modify'] * 86400))) { // 닉네임수정일이 지나지 않았다면 ?>
-
-
-
+
+ date("Y-m-d", G5_SERVER_TIME - ($config['cf_nick_modify'] * 86400))) { // 닉네임수정일이 지나지 않았다면 ?>
+
+
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
\ No newline at end of file
+
diff --git a/AvocadoEdition_Light/skin/member/basic/register_result.skin.php b/AvocadoEdition_Light/skin/member/basic/register_result.skin.php
index af1952a..e3889e3 100644
--- a/AvocadoEdition_Light/skin/member/basic/register_result.skin.php
+++ b/AvocadoEdition_Light/skin/member/basic/register_result.skin.php
@@ -1,39 +1,42 @@
', 0);
+add_stylesheet(' ', 0);
?>
-
- 계정 생성 완료
- 《 Complete Community Account 》
-
+
+ 계정 생성 완료
+ 《 Complete Community Account 》
+
-
+
-
- 정보관리 안내
-
-
"" 님의 =$config['cf_title']?> 가입을 진심으로 축하합니다.
-
회원님의 비밀번호는 아무도 알 수 없는 암호화 코드로 저장되므로 안심하셔도 좋습니다.
-
아이디, 비밀번호 분실시에는 총괄에게 문의해 주시길 바랍니다.
-
-
+
+ 정보관리 안내
+
+
"" 님의
+ = $config['cf_title'] ?> 가입을 진심으로 축하합니다.
+
회원님의 비밀번호는 아무도 알 수 없는 암호화 코드로 저장되므로 안심하셔도 좋습니다.
+
아이디, 비밀번호 분실시에는 총괄에게 문의해 주시길 바랍니다.
+
+
-
- 캐릭터 생성
-
-
캐릭터 생성은 신청기간 동안 생성하실 수 있습니다.
-
로그인 후 [ MY PAGE > CHARACTER ] 메뉴를 통해 생성 및 수정 관리를 하실 수 있습니다.
-
신청기간이 끝난 뒤에 합격된 캐릭터들은 관리자 승인 후 MEMBER LIST 에 자동으로 등록됩니다.
-
-
+
+ 캐릭터 생성
+
+
캐릭터 생성은 신청기간 동안 생성하실 수 있습니다.
+
로그인 후 [ MY PAGE > CHARACTER ] 메뉴를 통해 생성 및 수정 관리를 하실 수 있습니다.
+
신청기간이 끝난 뒤에 합격된 캐릭터들은 관리자 승인 후 MEMBER LIST 에 자동으로 등록됩니다.
+
+
-
- 메인화면으로
-
-
+
+ 메인화면으로
+
+
diff --git a/AvocadoEdition_Light/skin/member/basic/scrap.skin.php b/AvocadoEdition_Light/skin/member/basic/scrap.skin.php
index e890535..210eece 100644
--- a/AvocadoEdition_Light/skin/member/basic/scrap.skin.php
+++ b/AvocadoEdition_Light/skin/member/basic/scrap.skin.php
@@ -1,46 +1,53 @@
', 0);
+add_stylesheet(' ', 0);
?>
-
+
-
-
- 스크랩 목록
-
+
+
+ 스크랩 목록
+
- 번호
- 게시판
- 제목
- 보관일시
- 삭제
+ 번호
+ 게시판
+ 제목
+ 보관일시
+ 삭제
-
-
-
-
+
+
+
+
-
-
+
+
+
+
- 삭제
-
-
+ 삭제
+
+
- 자료가 없습니다. "; ?>
-
-
-
+ 자료가 없습니다. "; ?>
+
+
+
-
+
-
- 창닫기
-
+
+ 창닫기
+
-
\ No newline at end of file
+
diff --git a/AvocadoEdition_Light/skin/member/basic/scrap_popin.skin.php b/AvocadoEdition_Light/skin/member/basic/scrap_popin.skin.php
index 81f82a5..f2eb70b 100644
--- a/AvocadoEdition_Light/skin/member/basic/scrap_popin.skin.php
+++ b/AvocadoEdition_Light/skin/member/basic/scrap_popin.skin.php
@@ -1,41 +1,42 @@
', 0);
+add_stylesheet(' ', 0);
?>
-
스크랩하기
+
스크랩하기
-
+
-
+
제목 확인 및 댓글 쓰기
-
+
제목
-
-
+
+
댓글
-
+
-
+
- 스크랩을 하시면서 감사 혹은 격려의 댓글을 남기실 수 있습니다.
+ 스크랩을 하시면서 감사 혹은 격려의 댓글을 남기실 수 있습니다.
-
+
-
+
-
\ No newline at end of file
+
diff --git a/AvocadoEdition_Light/skin/member/basic/style.admin.css b/AvocadoEdition_Light/skin/member/basic/style.admin.css
index 2a49420..f9c1557 100644
--- a/AvocadoEdition_Light/skin/member/basic/style.admin.css
+++ b/AvocadoEdition_Light/skin/member/basic/style.admin.css
@@ -1,231 +1,265 @@
@charset "utf-8";
@import url(//fonts.googleapis.com/earlyaccess/notosanskr.css);
+
@font-face {
- font-family: 'icon';
- src: url('../../../css/fonts/icomoon.eot?y5isk6');
- src: url('../../../css/fonts/icomoon.eot?y5isk6#iefix') format('embedded-opentype'),
- url('../../../css/fonts/icomoon.ttf?y5isk6') format('truetype'),
- url('../../../css/fonts/icomoon.woff?y5isk6') format('woff'),
- url('../../../css/fonts/icomoon.svg?y5isk6#icomoon') format('svg');
- font-weight: normal;
- font-style: normal;
+ font-family: 'icon';
+ src: url('../../../css/fonts/icomoon.eot?y5isk6');
+ src: url('../../../css/fonts/icomoon.eot?y5isk6#iefix') format('embedded-opentype'),
+ url('../../../css/fonts/icomoon.ttf?y5isk6') format('truetype'),
+ url('../../../css/fonts/icomoon.woff?y5isk6') format('woff'),
+ url('../../../css/fonts/icomoon.svg?y5isk6#icomoon') format('svg');
+ font-weight: normal;
+ font-style: normal;
}
-html, body { position: relative; height: 100%; background: #fff; }
-
-#login_page_box { position: relative; height: 100%; }
-#login_page_box:before {
- content: "";
- display: block;
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- height: 50%;
- box-sizing: border-box;
- border-top: 8px solid #ecc6c6;
- background: url('./img/bak_admin_login_top_pattern.png');
- z-index: 0;
-}
-#login_page_box:after {
- content: "";
- display: block;
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- height: 50%;
-
- background: rgba(0,0,0,0);
- background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 65%, rgba(0,0,0,0.5) 100%);
- background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0,0,0,0)), color-stop(65%, rgba(0,0,0,0)), color-stop(100%, rgba(0,0,0,0.5)));
- background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 65%, rgba(0,0,0,0.5) 100%);
- background: -o-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 65%, rgba(0,0,0,0.5) 100%);
- background: -ms-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 65%, rgba(0,0,0,0.5) 100%);
- background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 65%, rgba(0,0,0,0.5) 100%);
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000', GradientType=0 );
+html,
+body {
+ position: relative;
+ height: 100%;
+ background: #fff;
}
-#login_title {
- display: block;
- position: relative;
- height: 50%;
- padding-bottom: 130px;
- box-sizing: border-box;
- z-index: 3;
-}
-#login_title .inner {
- position: relative;
- width: 100%;
- height: 100%;
-}
-#login_title h1 {
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translateX(-50%) translateY(-50%);
- font-family: 'Noto Sans KR', sans-serif;
- font-size: 35px;
- font-weight: 600;
+#login_page_box {
+ position: relative;
+ height: 100%;
}
-#login_title em {
- font-style: normal;
- color: #ecc6c6;
- text-align: center;
- line-height: 1.5em;
-}
-#login_title em strong {
- color: #fff;
-}
-#login_title span {
- display: block;
- font-size: 16px;
- font-weight: 400;
- color: #999;
- text-align: center;
-}
-#login_title sup {
- display: block;
- position: relative;
- font-size: 13px;
- font-weight: 300;
- text-align: center;
- padding: 0;
- margin-top: 20px;
- color: #777;
+#login_page_box:before {
+ content: "";
+ display: block;
+ position: absolute;
+ top: 0;
+ left: 0;
+ right: 0;
+ height: 50%;
+ box-sizing: border-box;
+ border-top: 8px solid #ecc6c6;
+ background: url('./img/bak_admin_login_top_pattern.png');
+ z-index: 0;
}
-#mb_login {
- position: absolute;
- top: 50%;
- left: 50%;
- width: 500px;
- height: 260px;
+#login_page_box:after {
+ content: "";
+ display: block;
+ position: absolute;
+ top: 0;
+ left: 0;
+ right: 0;
+ height: 50%;
- border-top: 5px solid #ecc6c6;
+ background: rgba(0, 0, 0, 0);
+ background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 65%, rgba(0, 0, 0, 0.5) 100%);
+ background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(65%, rgba(0, 0, 0, 0)), color-stop(100%, rgba(0, 0, 0, 0.5)));
+ background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 65%, rgba(0, 0, 0, 0.5) 100%);
+ background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 65%, rgba(0, 0, 0, 0.5) 100%);
+ background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 65%, rgba(0, 0, 0, 0.5) 100%);
+ background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 65%, rgba(0, 0, 0, 0.5) 100%);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#000000', GradientType=0);
+}
- transform: translateX(-50%) translateY(-50%);
- background: #fff;
+#login_title {
+ display: block;
+ position: relative;
+ height: 50%;
+ padding-bottom: 130px;
+ box-sizing: border-box;
+ z-index: 3;
+}
- -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.49);
- -moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.49);
- box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.49);
+#login_title .inner {
+ position: relative;
+ width: 100%;
+ height: 100%;
+}
- z-index: 5;
+#login_title h1 {
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ transform: translateX(-50%) translateY(-50%);
+ font-family: 'Noto Sans KR', sans-serif;
+ font-size: 35px;
+ font-weight: 600;
+}
+
+#login_title em {
+ font-style: normal;
+ color: #ecc6c6;
+ text-align: center;
+ line-height: 1.5em;
+}
+
+#login_title em strong {
+ color: #fff;
+}
+
+#login_title span {
+ display: block;
+ font-size: 16px;
+ font-weight: 400;
+ color: #999;
+ text-align: center;
+}
+
+#login_title sup {
+ display: block;
+ position: relative;
+ font-size: 13px;
+ font-weight: 300;
+ text-align: center;
+ padding: 0;
+ margin-top: 20px;
+ color: #777;
+}
+
+#mb_login {
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ width: 500px;
+ height: 260px;
+
+ border-top: 5px solid #ecc6c6;
+
+ transform: translateX(-50%) translateY(-50%);
+ background: #fff;
+
+ -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.49);
+ -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.49);
+ box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.49);
+
+ z-index: 5;
}
-#mb_login:before {
- content: "";
- display: block;
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: -20px;
- background: #fff;
- z-index: 0;
+#mb_login:before {
+ content: "";
+ display: block;
+ position: absolute;
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: -20px;
+ background: #fff;
+ z-index: 0;
}
-#mb_login .inner {
- position: relative;
- padding: 30px;
- z-index: 1;
+#mb_login .inner {
+ position: relative;
+ padding: 30px;
+ z-index: 1;
}
-#mb_login fieldset.input {
- display: block;
- position: relative;
- margin-bottom: 5px;
- margin-right: 130px;
+#mb_login fieldset.input {
+ display: block;
+ position: relative;
+ margin-bottom: 5px;
+ margin-right: 130px;
}
-#mb_login fieldset.input input {
- display: block;
- width: 100%;
- box-sizing: border-box;
- background: #fff !important;
- color: #3a3a3b;
- height: 45px;
- padding: 0 15px 0 45px;
- font-size: 15px;
- font-family: 'Noto Sans KR', sans-serif;
- outline: none;
- border: 1px solid #eaeaea;
+#mb_login fieldset.input input {
+ display: block;
+ width: 100%;
+ box-sizing: border-box;
+
+ background: #fff !important;
+ color: #3a3a3b;
+ height: 45px;
+ padding: 0 15px 0 45px;
+ font-size: 15px;
+ font-family: 'Noto Sans KR', sans-serif;
+ outline: none;
+ border: 1px solid #eaeaea;
}
-#mb_login fieldset.input input:focus { border: 2px solid #ecc6c6; }
-#mb_login fieldset.input label {
- display: block;
- position: absolute;
- top: 0;
- left: 0;
- width: 45px;
- height: 45px;
- line-height: 45px;
- overflow: hidden;
- text-indent: -999px;
+#mb_login fieldset.input input:focus {
+ border: 2px solid #ecc6c6;
+}
+
+#mb_login fieldset.input label {
+ display: block;
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 45px;
+ height: 45px;
+ line-height: 45px;
+ overflow: hidden;
+ text-indent: -999px;
}
-#mb_login fieldset.input label:before {
- display: block;
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- text-indent: 0;
- text-align: center;
- font-family: 'icon';
- font-size: 16px;
- color: #ccc;
+
+#mb_login fieldset.input label:before {
+ display: block;
+ position: absolute;
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ text-indent: 0;
+ text-align: center;
+ font-family: 'icon';
+ font-size: 16px;
+ color: #ccc;
+}
+
+#mb_login fieldset.input input:focus+label:before {
+ color: #ecc6c6;
+}
+
+#mb_login fieldset.input label.login_id:before {
+ content: "\e976";
+}
+
+#mb_login fieldset.input label.login_pw:before {
+ content: "\e98e";
}
-#mb_login fieldset.input input:focus + label:before { color: #ecc6c6; }
-#mb_login fieldset.input label.login_id:before { content: "\e976"; }
-#mb_login fieldset.input label.login_pw:before { content: "\e98e"; }
#mb_login fieldset.input input:-webkit-autofill {
- transition: background-color 50000s ease-in-out 0s;
- -webkit-box-shadow: 0 0 0 30px white inset;
- -webkit-text-fill-color: #3a3a3b !important;
+ transition: background-color 50000s ease-in-out 0s;
+ -webkit-box-shadow: 0 0 0 30px white inset;
+ -webkit-text-fill-color: #3a3a3b !important;
}
-#mb_login fieldset.check {
- display: block;
- position: relative;
- padding: 5px;
- background: #f6f6f6;
- border: 1px solid #ebebeb;
- color: #3a3a3a;
- margin: 5px 130px 5px 0;
- font-size: 11px;
-}
-#mb_login fieldset.check label { cursor: pointer; }
-
-#mb_login fieldset.button {
- display: block;
- position: absolute;
- top: 30px;
- right: 30px;
- width: 126px;
- height: 128px;
-}
-#mb_login fieldset.button .btn_submit {
- display: block;
- width: 100%;
- height: 100%;
- background: #ecc6c6;
- font-family: 'Noto Sans KR', sans-serif;
- font-size: 18px;
- border: none;
- cursor: pointer;
- color: #fff;
+#mb_login fieldset.check {
+ display: block;
+ position: relative;
+ padding: 5px;
+ background: #f6f6f6;
+ border: 1px solid #ebebeb;
+ color: #3a3a3a;
+ margin: 5px 130px 5px 0;
+ font-size: 11px;
}
-#copyright {
- padding-top: 30px;
- font-size: 12px;
- color: #aaa;
- text-align: center;
-}
\ No newline at end of file
+#mb_login fieldset.check label {
+ cursor: pointer;
+}
+
+#mb_login fieldset.button {
+ display: block;
+ position: absolute;
+ top: 30px;
+ right: 30px;
+ width: 126px;
+ height: 128px;
+}
+
+#mb_login fieldset.button .btn_submit {
+ display: block;
+ width: 100%;
+ height: 100%;
+ background: #ecc6c6;
+ font-family: 'Noto Sans KR', sans-serif;
+ font-size: 18px;
+ border: none;
+ cursor: pointer;
+ color: #fff;
+}
+
+#copyright {
+ padding-top: 30px;
+ font-size: 12px;
+ color: #aaa;
+ text-align: center;
+}
diff --git a/AvocadoEdition_Light/skin/member/basic/style.css b/AvocadoEdition_Light/skin/member/basic/style.css
index dd00bfd..665828a 100644
--- a/AvocadoEdition_Light/skin/member/basic/style.css
+++ b/AvocadoEdition_Light/skin/member/basic/style.css
@@ -1,99 +1,153 @@
@charset "utf-8";
-#member_page {
- position: relative;
- overflow: hidden;
- max-width: 800px;
- margin: 0 auto;
- padding-bottom: 80px;
+#member_page {
+ position: relative;
+ overflow: hidden;
+ max-width: 800px;
+ margin: 0 auto;
+ padding-bottom: 80px;
}
-#member_page .agree-pannel .theme-box {
- height: 300px;
- overflow: auto;
+#member_page .agree-pannel .theme-box {
+ height: 300px;
+ overflow: auto;
}
-#member_page .member-title {
- font-size: 24px;
- padding-top: 20px;
- text-align: center;
-}
-#member_page .member-title * { display: block; }
-#member_page .member-title span {
- font-size: 15px;
- font-weight: 600;
-}
-#member_page .member-contents { padding-top: 20px; }
-
-#member_page .member-contents h2 {
- font-size: 16px;
- line-height: 1.5em;
- padding-bottom: 10px;
+#member_page .member-title {
+ font-size: 24px;
+ padding-top: 20px;
+ text-align: center;
}
-#member_page .member-contents section {
- padding-bottom: 30px;
+#member_page .member-title * {
+ display: block;
}
-#member_page .member-contents .theme-box {
- padding: 15px;
- line-height: 1.8em;
+#member_page .member-title span {
+ font-size: 15px;
+ font-weight: 600;
}
-#member_page .check-agree {
- padding-top: 10px;
- text-align: right;
+#member_page .member-contents {
+ padding-top: 20px;
}
-#member_page .check-agree input { display: none; }
-#member_page .check-agree input + label:before {
- content: "\ea53";
- display: inline-block;
- vertical-align: middle;
- font-family: 'icon';
- margin-right: 5px;
- font-size: 18px;
+
+#member_page .member-contents h2 {
+ font-size: 16px;
+ line-height: 1.5em;
+ padding-bottom: 10px;
}
-#member_page .check-agree input:checked + label:before {
- content: "\ea52";
+
+#member_page .member-contents section {
+ padding-bottom: 30px;
+}
+
+#member_page .member-contents .theme-box {
+ padding: 15px;
+ line-height: 1.8em;
+}
+
+#member_page .check-agree {
+ padding-top: 10px;
+ text-align: right;
+}
+
+#member_page .check-agree input {
+ display: none;
+}
+
+#member_page .check-agree input+label:before {
+ content: "\ea53";
+ display: inline-block;
+ vertical-align: middle;
+ font-family: 'icon';
+ margin-right: 5px;
+ font-size: 18px;
+}
+
+#member_page .check-agree input:checked+label:before {
+ content: "\ea52";
}
-.member-form {
- width: 100%;
- margin-bottom: 30px;
+.member-form {
+ width: 100%;
+ margin-bottom: 30px;
}
-.member-form th {
- font-size: 13px;
- font-weight: 400;
- text-align: left;
+
+.member-form th {
+ font-size: 13px;
+ font-weight: 400;
+ text-align: left;
}
/*** PASSWORD ***/
-#password_box {display:block; position:absolute; top:50%; left:50%; width:300px; transform:translate(-50%, -50%); -webkit-transform:translate(-50%, -50%);}
+#password_box {
+ display: block;
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ width: 300px;
+ transform: translate(-50%, -50%);
+ -webkit-transform: translate(-50%, -50%);
+}
+
+#password_box h1 {
+ display: block;
+ width: 100%;
+ height: auto;
+ padding: .5em;
+ font-size: 1.2em;
+ text-align: center;
+}
+
+#password_box h1+.theme-box {
+ border-top-width: 0;
+ margin-bottom: 3px;
+}
+
+#password_box .descript strong {
+ display: block;
+}
+
+#password_box .pass-form {
+ position: relative;
+ padding-right: 80px;
+ margin-top: 10px;
+}
+
+#password_box .pass-form fieldset {
+ display: block;
+}
+
+#password_box .pass-form fieldset+fieldset {
+ margin-top: 3px;
+}
-#password_box h1 {display:block; width:100%; height:auto; padding:.5em; font-size:1.2em; text-align:center;}
-#password_box h1 + .theme-box { border-top-width: 0; margin-bottom: 3px; }
-#password_box .descript strong {display:block;}
-#password_box .pass-form {position:relative; padding-right:80px; margin-top:10px;}
-#password_box .pass-form fieldset { display: block; }
-#password_box .pass-form fieldset + fieldset { margin-top: 3px; }
#password_box .pass-form .box-btn {
- display: block;
- position: absolute;
- margin: 0;
- top: 0;
- right: 0;
- bottom: 0;
- width: 70px;
+ display: block;
+ position: absolute;
+ margin: 0;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ width: 70px;
}
-#password_box .pass-form input[type="password"] { width: 100%; }
-#password_box .pass-form .box-btn .ui-btn {
- width: 100%;
- height: 100%;
- padding: 0;
+
+#password_box .pass-form input[type="password"] {
+ width: 100%;
+}
+
+#password_box .pass-form .box-btn .ui-btn {
+ width: 100%;
+ height: 100%;
+ padding: 0;
+}
+
+#password_box .btn_confirm {
+ padding: 0;
}
-#password_box .btn_confirm {padding:0;}
diff --git a/AvocadoEdition_Light/skin/new/basic/new.skin.php b/AvocadoEdition_Light/skin/new/basic/new.skin.php
index 2558d81..54c755f 100644
--- a/AvocadoEdition_Light/skin/new/basic/new.skin.php
+++ b/AvocadoEdition_Light/skin/new/basic/new.skin.php
@@ -1,32 +1,34 @@
', 0);
+add_stylesheet(' ', 0);
?>
- 상세검색
-
+ 상세검색
+
검색대상
- 전체게시물
- 원글만
- 코멘트만
+ 전체게시물
+ 원글만
+ 코멘트만
검색어 필수
회원 아이디만 검색 가능
-
-
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
-
+
-
\ No newline at end of file
+
diff --git a/AvocadoEdition_Light/skin/new/basic/style.css b/AvocadoEdition_Light/skin/new/basic/style.css
index b1f56b6..5de3726 100644
--- a/AvocadoEdition_Light/skin/new/basic/style.css
+++ b/AvocadoEdition_Light/skin/new/basic/style.css
@@ -2,6 +2,24 @@
/* SIR 지운아빠 */
/* 최근게시물 스킨 (new) */
-#new_sch {margin-bottom:10px;text-align:right}
-#new_sch legend {position:absolute;margin:0;padding:0;font-size:0;line-height:0;text-indent:-9999em;overflow:hidden}
-#new_sch p {padding:5px 0 0;font-size:0.95em;text-align:right;letter-spacing:-0.1em}
\ No newline at end of file
+#new_sch {
+ margin-bottom: 10px;
+ text-align: right
+}
+
+#new_sch legend {
+ position: absolute;
+ margin: 0;
+ padding: 0;
+ font-size: 0;
+ line-height: 0;
+ text-indent: -9999em;
+ overflow: hidden
+}
+
+#new_sch p {
+ padding: 5px 0 0;
+ font-size: 0.95em;
+ text-align: right;
+ letter-spacing: -0.1em
+}
diff --git a/AvocadoEdition_Light/skin/outlogin/basic/outlogin.skin.1.php b/AvocadoEdition_Light/skin/outlogin/basic/outlogin.skin.1.php
index b52b03b..3178e71 100644
--- a/AvocadoEdition_Light/skin/outlogin/basic/outlogin.skin.1.php
+++ b/AvocadoEdition_Light/skin/outlogin/basic/outlogin.skin.1.php
@@ -1,34 +1,35 @@
', 0);
+if (!defined("_GNUBOARD_"))
+ exit; // 개별 페이지 접근 불가
+add_stylesheet(' ', 0);
?>
diff --git a/AvocadoEdition_Light/skin/outlogin/basic/outlogin.skin.2.php b/AvocadoEdition_Light/skin/outlogin/basic/outlogin.skin.2.php
index 322ef3f..7fa1404 100644
--- a/AvocadoEdition_Light/skin/outlogin/basic/outlogin.skin.2.php
+++ b/AvocadoEdition_Light/skin/outlogin/basic/outlogin.skin.2.php
@@ -1,76 +1,76 @@
', 0);
+if (!defined("_GNUBOARD_"))
+ exit; // 개별 페이지 접근 불가
+add_stylesheet(' ', 0);
?>
-
-
+
+
";
- } else {
- echo "
";
- }
-} else {
- if($is_add_character) {
- echo "
캐릭터 생성 ";
- } else {
- echo "
";
- }
-} ?>
-
+ } else {
+ echo "
";
+ }
+ } else {
+ if ($is_add_character) {
+ echo "
캐릭터 생성 ";
+ } else {
+ echo "
";
+ }
+ } ?>
+
-
-{$character['ch_name']}";
- }
-?>
-
-
-
- 관리자
-
-
-보유중인 캐릭터가 없습니다.";
- } else {
- echo "
캐릭터 생성기간이 아닙니다.
";
- }
- }
-?>
+
+ {$character['ch_name']}";
+ }
+ ?>
+
+
+
+ 관리자
+
+
+ 보유중인 캐릭터가 없습니다.";
+ } else {
+ echo "
캐릭터 생성기간이 아닙니다.
";
+ }
+ }
+ ?>
-
-
+
+
-
diff --git a/AvocadoEdition_Light/skin/outlogin/basic/style.css b/AvocadoEdition_Light/skin/outlogin/basic/style.css
index 93b3494..3455eca 100644
--- a/AvocadoEdition_Light/skin/outlogin/basic/style.css
+++ b/AvocadoEdition_Light/skin/outlogin/basic/style.css
@@ -1,158 +1,192 @@
@charset "utf-8";
-.login-skin-basic {
- display: block;
- position: relative;
+.login-skin-basic {
+ display: block;
+ position: relative;
}
-.login-skin-basic fieldset {
- display: block;
- position: relative;
- margin-bottom: 3px;
- margin-right: 75px;
+.login-skin-basic fieldset {
+ display: block;
+ position: relative;
+ margin-bottom: 3px;
+ margin-right: 75px;
}
+
.login-skin-basic fieldset input[type="text"],
-.login-skin-basic fieldset input[type="password"] { display: block; width: 100%; padding-left: 30px; }
-.login-skin-basic .box-id:before {
- content: "\e976";
- font-family: 'icon';
- display: block;
- position: absolute;
- top: 0;
- bottom: 0;
- left: 10px;
- line-height: 30px;
-}
-.login-skin-basic .box-pw:before {
- content: "\e98d";
- font-family: 'icon';
- display: block;
- position: absolute;
- top: 0;
- bottom: 0;
- left: 10px;
- line-height: 30px;
+.login-skin-basic fieldset input[type="password"] {
+ display: block;
+ width: 100%;
+ padding-left: 30px;
}
-.login-skin-basic fieldset.box-btn {
- position: absolute;
- top: 0;
- right: 0;
- width: 72px;
- height: 63px;
-
- margin-right: 0;
+.login-skin-basic .box-id:before {
+ content: "\e976";
+ font-family: 'icon';
+ display: block;
+ position: absolute;
+ top: 0;
+ bottom: 0;
+ left: 10px;
+ line-height: 30px;
+}
+
+.login-skin-basic .box-pw:before {
+ content: "\e98d";
+ font-family: 'icon';
+ display: block;
+ position: absolute;
+ top: 0;
+ bottom: 0;
+ left: 10px;
+ line-height: 30px;
+}
+
+.login-skin-basic fieldset.box-btn {
+ position: absolute;
+ top: 0;
+ right: 0;
+ width: 72px;
+ height: 63px;
+
+ margin-right: 0;
+}
+
+.login-skin-basic fieldset.box-btn button {
+ width: 100%;
+ height: 100%;
+}
+
+.login-skin-basic fieldset.box-join {
+ margin-right: 0;
+}
+
+.login-skin-basic fieldset.box-join .ui-btn {
+ width: 100%;
}
-.login-skin-basic fieldset.box-btn button { width: 100%; height: 100%; }
-.login-skin-basic fieldset.box-join { margin-right: 0; }
-.login-skin-basic fieldset.box-join .ui-btn { width: 100%; }
-.logined-skin-basic {
- position: relative;
- padding-left: 80px;
- height: 90px;
+.logined-skin-basic {
+ position: relative;
+ padding-left: 80px;
+ height: 90px;
}
-.logined-skin-basic .ui-thumb {
- position: absolute;
- top: 0;
- left: 0;
- width: 70px;
- height: 90px;
- overflow: hidden;
+
+.logined-skin-basic .ui-thumb {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 70px;
+ height: 90px;
+ overflow: hidden;
}
-.logined-skin-basic .ui-thumb .thumb-box {
- display: block;
- position: relative;
- width: 100%;
- height: 100%;
- overflow: hidden;
- background: rgba(0, 0, 0, 0.5);
+
+.logined-skin-basic .ui-thumb .thumb-box {
+ display: block;
+ position: relative;
+ width: 100%;
+ height: 100%;
+ overflow: hidden;
+ background: rgba(0, 0, 0, 0.5);
}
-.logined-skin-basic .ui-thumb .thumb-box img {
- min-width: 100%;
- height: 100%;
- max-width: 120%;
+
+.logined-skin-basic .ui-thumb .thumb-box img {
+ min-width: 100%;
+ height: 100%;
+ max-width: 120%;
}
-.logined-skin-basic .ui-thumb .ui-btn {
- display: block;
- width: 100%;
- height: 100%;
- line-height: 1.2em;
- padding: 8px;
+
+.logined-skin-basic .ui-thumb .ui-btn {
+ display: block;
+ width: 100%;
+ height: 100%;
+ line-height: 1.2em;
+ padding: 8px;
}
-.logined-skin-basic .ui-thumb .ui-btn:before {
- content: "\e973";
- display: block;
- padding-top: 10px;
- padding-bottom: 10px;
- font-family: 'icon';
- font-size: 20px;
+
+.logined-skin-basic .ui-thumb .ui-btn:before {
+ content: "\e973";
+ display: block;
+ padding-top: 10px;
+ padding-bottom: 10px;
+ font-family: 'icon';
+ font-size: 20px;
}
-.logined-skin-basic .ui-thumb .ui-btn.etc:before {
- content: "\ea4e";
- padding-top: 30px;
+
+.logined-skin-basic .ui-thumb .ui-btn.etc:before {
+ content: "\ea4e";
+ padding-top: 30px;
}
-.logined-skin-basic .info { position: relative; height: 100%; }
+
+.logined-skin-basic .info {
+ position: relative;
+ height: 100%;
+}
+
.logined-skin-basic .info .name,
-.logined-skin-basic .info .character {
- display: block;
- position: relative;
- font-size: 14px;
- font-weight: 600;
+.logined-skin-basic .info .character {
+ display: block;
+ position: relative;
+ font-size: 14px;
+ font-weight: 600;
}
-.logined-skin-basic .info .character + .name {
- padding-top: 5px;
- font-size: 13px;
- font-weight: 400;
+.logined-skin-basic .info .character+.name {
+ padding-top: 5px;
+ font-size: 13px;
+ font-weight: 400;
}
-.logined-skin-basic .info .name .ui-btn {
- font-size: 11px;
- height: 20px;
- line-height: 18px;
- padding: 0 8px;
- margin-left: 5px;
+.logined-skin-basic .info .name .ui-btn {
+ font-size: 11px;
+ height: 20px;
+ line-height: 18px;
+ padding: 0 8px;
+ margin-left: 5px;
}
-.logined-skin-basic .info .descript {
- padding: 5px 0;
- font-size: 12px;
+.logined-skin-basic .info .descript {
+ padding: 5px 0;
+ font-size: 12px;
}
-.logined-skin-basic .control-group {
- display: block;
- position: absolute;
- left: 0;
- right: 0;
- bottom: 0;
- overflow: hidden;
+.logined-skin-basic .control-group {
+ display: block;
+ position: absolute;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ overflow: hidden;
}
-.logined-skin-basic .control-group li {
- display: block;
- position: relative;
- width: 33.33%;
- float: left;
+
+.logined-skin-basic .control-group li {
+ display: block;
+ position: relative;
+ width: 33.33%;
+ float: left;
}
-.logined-skin-basic .control-group .ui-btn {
- display: block;
- width: 100%;
- letter-spacing: -1px;
- font-size: 12px;
- padding: 0 5px;
+
+.logined-skin-basic .control-group .ui-btn {
+ display: block;
+ width: 100%;
+ letter-spacing: -1px;
+ font-size: 12px;
+ padding: 0 5px;
}
-.logined-skin-basic .control-group .ui-btn i {
- display: inline-block;
- width: 18px;
- height: 18px;
- vertical-align: middle;
- text-align: center;
- line-height: 18px;
- color: #fff;
- background: #8d3333;
- border-radius: 100%;
- font-size: 11px;
+
+.logined-skin-basic .control-group .ui-btn i {
+ display: inline-block;
+ width: 18px;
+ height: 18px;
+ vertical-align: middle;
+ text-align: center;
+ line-height: 18px;
+ color: #fff;
+ background: #8d3333;
+ border-radius: 100%;
+ font-size: 11px;
}
-.logined-skin-basic .control-group li + li .ui-btn { border-left-width: 0; }
\ No newline at end of file
+
+.logined-skin-basic .control-group li+li .ui-btn {
+ border-left-width: 0;
+}
diff --git a/AvocadoEdition_Light/skin/poll/basic/poll.skin.php b/AvocadoEdition_Light/skin/poll/basic/poll.skin.php
index 2317618..4d7bf3c 100644
--- a/AvocadoEdition_Light/skin/poll/basic/poll.skin.php
+++ b/AvocadoEdition_Light/skin/poll/basic/poll.skin.php
@@ -1,65 +1,67 @@
', 0);
+add_stylesheet(' ', 0);
?>
-
-
-
-
+
+
+
+
-
\ No newline at end of file
+
diff --git a/AvocadoEdition_Light/skin/poll/basic/poll_result.skin.php b/AvocadoEdition_Light/skin/poll/basic/poll_result.skin.php
index fedf718..9ae0a7a 100644
--- a/AvocadoEdition_Light/skin/poll/basic/poll_result.skin.php
+++ b/AvocadoEdition_Light/skin/poll/basic/poll_result.skin.php
@@ -1,125 +1,134 @@
', 0);
+add_stylesheet(' ', 0);
?>
-
-
- 결과
+
+
+ 결과
-
- 전체 표
-
-
-
-
-
-
- 표
- 퍼센트
-
-
-
-
-
-
-
-
-
-
-
+
+ 전체 표
+
+
+
+
+
+
+ 표
+ 퍼센트
+
+
+
+
+
+
+
+
+
+
+
-
-
-
+
+
-
-
-
+
+
+
-
\ No newline at end of file
+
diff --git a/AvocadoEdition_Light/skin/poll/basic/style.css b/AvocadoEdition_Light/skin/poll/basic/style.css
index cbe40a9..6c36035 100644
--- a/AvocadoEdition_Light/skin/poll/basic/style.css
+++ b/AvocadoEdition_Light/skin/poll/basic/style.css
@@ -3,20 +3,33 @@
/* ### 기본 스타일 커스터마이징 시작 ### */
-#poll a.btn_admin {} /* 관리자 전용 버튼 */
-#poll a.btn_admin:focus, #poll a.btn_admin:hover {}
+#poll a.btn_admin {}
+
+/* 관리자 전용 버튼 */
+#poll a.btn_admin:focus,
+#poll a.btn_admin:hover {}
#poll_result .tbl_frm table {}
+
#poll_result .tbl_frm .frm_info {}
+
#poll_result .tbl_frm .frm_address {}
+
#poll_result .tbl_frm .frm_file {}
+
#poll_result .tbl_frm caption {}
#poll_result .tbl_frm01 {}
+
#poll_result .tbl_frm01 th {}
+
#poll_result .tbl_frm01 td {}
-#poll_result .tbl_frm01 textarea, #poll_result tbl_frm01 .frm_input {}
+
+#poll_result .tbl_frm01 textarea,
+#poll_result tbl_frm01 .frm_input {}
+
#poll_result .tbl_frm01 textarea {}
+
/*
#poll_result .tbl_frm01 #captcha {}
#poll_result .tbl_frm01 #captcha input {}
@@ -24,64 +37,245 @@
#poll_result .tbl_frm01 a {}
/* 필수입력 */
-#poll_result .required, #poll_result textarea.required {}
+#poll_result .required,
+#poll_result textarea.required {}
-#poll_result .btn_confirm {} /* 서식단계 진행 */
+#poll_result .btn_confirm {}
+
+/* 서식단계 진행 */
#poll_result .btn_submit {}
+
#poll_result button.btn_submit {}
-#poll_result .win_btn {} /* 새창용 */
+
+#poll_result .win_btn {}
+
+/* 새창용 */
#poll_result .win_btn button {}
+
#poll_result .win_btn input {}
+
#poll_result .win_btn a {}
-#poll_result .win_btn a:focus, #poll_result .win_btn a:hover {}
+
+#poll_result .win_btn a:focus,
+#poll_result .win_btn a:hover {}
/* ### 기본 스타일 커스터마이징 끝 ### */
/* 설문조사 스킨 */
-#poll header {position:relative;padding:15px 14px 0}
-#poll h2 { text-align: center; border-bottom: 1px solid #fff; padding-bottom: 20px; margin-bottom: 20px; }
-#poll header .btn_admin {margin-top:5px;width:158px;text-align:center}
-#poll header p {padding:5px 0 0}
-#poll ul {margin:0 0 10px;padding:5px 14px;list-style:none}
-#poll li {padding:3px 0}
-#poll footer {padding:0 14px 14px; text-align: center;}
+#poll header {
+ position: relative;
+ padding: 15px 14px 0
+}
+
+#poll h2 {
+ text-align: center;
+ border-bottom: 1px solid #fff;
+ padding-bottom: 20px;
+ margin-bottom: 20px;
+}
+
+#poll header .btn_admin {
+ margin-top: 5px;
+ width: 158px;
+ text-align: center
+}
+
+#poll header p {
+ padding: 5px 0 0
+}
+
+#poll ul {
+ margin: 0 0 10px;
+ padding: 5px 14px;
+ list-style: none
+}
+
+#poll li {
+ padding: 3px 0
+}
+
+#poll footer {
+ padding: 0 14px 14px;
+ text-align: center;
+}
/* 설문조사 결과 (새창) */
-#poll_result { padding: 20px 0; }
-#poll_result section {margin:0 20px 20px;padding:15px;}
-#poll_result .tbl_wrap {margin:0}
-#poll_result h2 {margin:0;padding:20px 0}
+#poll_result {
+ padding: 20px 0;
+}
+
+#poll_result section {
+ margin: 0 20px 20px;
+ padding: 15px;
+}
+
+#poll_result .tbl_wrap {
+ margin: 0
+}
+
+#poll_result h2 {
+ margin: 0;
+ padding: 20px 0
+}
+
#poll_result a {}
+
#poll_result .sv_member,
-#poll_result .sv_guest {font-weight:bold}
-#poll_result_list {margin:0 auto 20px}
-#poll_result_list h2 {text-align:center}
+#poll_result .sv_guest {
+ font-weight: bold
+}
+
+#poll_result_list {
+ margin: 0 auto 20px
+}
+
+#poll_result_list h2 {
+ text-align: center
+}
+
#poll_result_list dl,
#poll_result_list dt,
-#poll_result_list dd {margin:0;padding:0}
-#poll_result_list dl {padding-bottom:30px}
-#poll_result_list dt {margin-right:5%;color:#e8180d;text-align:right}
-#poll_result_list ol {margin:0;padding-left:30px}
-#poll_result_list li {margin-top:10px}
-#poll_result_list p {position:relative;margin:0;padding:5px 0}
-#poll_result_list p strong {position:absolute;top:5px;right:5%;padding-right:80px;width:100px;text-align:right}
-#poll_result_list p span {position:absolute;top:5px;right:5%;width:80px;color:#68999c;text-align:right}
-.poll_result_graph {position:relative;margin-right:5%;height:5px;background:#eee}
-.poll_result_graph span {position:absolute;top:0;left:0;height:5px;background:#565e60;font-size:0.1em}
+#poll_result_list dd {
+ margin: 0;
+ padding: 0
+}
+
+#poll_result_list dl {
+ padding-bottom: 30px
+}
+
+#poll_result_list dt {
+ margin-right: 5%;
+ color: #e8180d;
+ text-align: right
+}
+
+#poll_result_list ol {
+ margin: 0;
+ padding-left: 30px
+}
+
+#poll_result_list li {
+ margin-top: 10px
+}
+
+#poll_result_list p {
+ position: relative;
+ margin: 0;
+ padding: 5px 0
+}
+
+#poll_result_list p strong {
+ position: absolute;
+ top: 5px;
+ right: 5%;
+ padding-right: 80px;
+ width: 100px;
+ text-align: right
+}
+
+#poll_result_list p span {
+ position: absolute;
+ top: 5px;
+ right: 5%;
+ width: 80px;
+ color: #68999c;
+ text-align: right
+}
+
+.poll_result_graph {
+ position: relative;
+ margin-right: 5%;
+ height: 5px;
+ background: #eee
+}
+
+.poll_result_graph span {
+ position: absolute;
+ top: 0;
+ left: 0;
+ height: 5px;
+ background: #565e60;
+ font-size: 0.1em
+}
+
#poll_result_cmt {}
-#poll_result_cmt h2 {text-align:center}
-#poll_result_cmt h3 {margin:0 0 10px}
-#poll_result_cmt article {margin:0 0 15px;border-bottom:1px solid #eee}
-#poll_result_cmt h1 {position:absolute;margin:0;padding:0;border:0;font-size:0;text-indent:-9999em;line-height:0;overflow:hidden}
-.poll_datetime {display:inline-block;margin-left:10px}
-#poll_result_cmt p {padding:3px 0}
-#poll_result_cmt fieldset {margin-bottom:0;text-align:left}
-#poll_result_cmt fieldset p {margin:0 0 15px;padding:3px 0 0px;text-align:left}
-#poll_result_cmt footer {text-align:right}
-#poll_result_wcmt {margin:0 0 10px}
-.poll_cmt_del a {display:inline-block;padding-bottom:10px}
-#poll_result_oth {margin:0 auto 20px;width:93%}
-#poll_result_oth h2 {padding:0 0 10px}
-#poll_result_oth ul {margin:0;padding:0;list-style:none}
-#poll_result_oth a {display:block;padding:10px 0;border-bottom:1px solid #eee}
\ No newline at end of file
+
+#poll_result_cmt h2 {
+ text-align: center
+}
+
+#poll_result_cmt h3 {
+ margin: 0 0 10px
+}
+
+#poll_result_cmt article {
+ margin: 0 0 15px;
+ border-bottom: 1px solid #eee
+}
+
+#poll_result_cmt h1 {
+ position: absolute;
+ margin: 0;
+ padding: 0;
+ border: 0;
+ font-size: 0;
+ text-indent: -9999em;
+ line-height: 0;
+ overflow: hidden
+}
+
+.poll_datetime {
+ display: inline-block;
+ margin-left: 10px
+}
+
+#poll_result_cmt p {
+ padding: 3px 0
+}
+
+#poll_result_cmt fieldset {
+ margin-bottom: 0;
+ text-align: left
+}
+
+#poll_result_cmt fieldset p {
+ margin: 0 0 15px;
+ padding: 3px 0 0px;
+ text-align: left
+}
+
+#poll_result_cmt footer {
+ text-align: right
+}
+
+#poll_result_wcmt {
+ margin: 0 0 10px
+}
+
+.poll_cmt_del a {
+ display: inline-block;
+ padding-bottom: 10px
+}
+
+#poll_result_oth {
+ margin: 0 auto 20px;
+ width: 93%
+}
+
+#poll_result_oth h2 {
+ padding: 0 0 10px
+}
+
+#poll_result_oth ul {
+ margin: 0;
+ padding: 0;
+ list-style: none
+}
+
+#poll_result_oth a {
+ display: block;
+ padding: 10px 0;
+ border-bottom: 1px solid #eee
+}
diff --git a/AvocadoEdition_Light/skin/popular/basic/popular.skin.php b/AvocadoEdition_Light/skin/popular/basic/popular.skin.php
index 49e0b99..aa1af66 100644
--- a/AvocadoEdition_Light/skin/popular/basic/popular.skin.php
+++ b/AvocadoEdition_Light/skin/popular/basic/popular.skin.php
@@ -1,19 +1,22 @@
', 0);
+add_stylesheet(' ', 0);
?>
-
\ No newline at end of file
+
diff --git a/AvocadoEdition_Light/skin/popular/basic/style.css b/AvocadoEdition_Light/skin/popular/basic/style.css
index dd7d21a..63e059b 100644
--- a/AvocadoEdition_Light/skin/popular/basic/style.css
+++ b/AvocadoEdition_Light/skin/popular/basic/style.css
@@ -2,11 +2,44 @@
/* SIR 지운아빠 */
/* 인기검색어 */
-#popular {border-bottom:1px dotted #dde4e9}
-#popular div {margin:0 auto;width:970px;zoom:1}
-#popular div:after {display:block;visibility:hidden;clear:both;content:""}
-#popular h2 {float:left;padding:10px 45px 10px 0}
-#popular ul {float:left;margin:0;padding:0;list-style:none}
-#popular li {float:left}
-#popular a {display:inline-block;padding:10px;text-decoration:none}
-#popular a:focus, #popular a:hover {}
\ No newline at end of file
+#popular {
+ border-bottom: 1px dotted #dde4e9
+}
+
+#popular div {
+ margin: 0 auto;
+ width: 970px;
+ zoom: 1
+}
+
+#popular div:after {
+ display: block;
+ visibility: hidden;
+ clear: both;
+ content: ""
+}
+
+#popular h2 {
+ float: left;
+ padding: 10px 45px 10px 0
+}
+
+#popular ul {
+ float: left;
+ margin: 0;
+ padding: 0;
+ list-style: none
+}
+
+#popular li {
+ float: left
+}
+
+#popular a {
+ display: inline-block;
+ padding: 10px;
+ text-decoration: none
+}
+
+#popular a:focus,
+#popular a:hover {}
diff --git a/AvocadoEdition_Light/skin/qa/basic/list.skin.php b/AvocadoEdition_Light/skin/qa/basic/list.skin.php
index a07e95a..930bd50 100644
--- a/AvocadoEdition_Light/skin/qa/basic/list.skin.php
+++ b/AvocadoEdition_Light/skin/qa/basic/list.skin.php
@@ -1,146 +1,154 @@
', 0);
+add_stylesheet(' ', 0);
?>
-
-
- =conv_content($qaconfig['qa_content_head'], 1);?>
-
-
+
+
+ = conv_content($qaconfig['qa_content_head'], 1); ?>
+
+
diff --git a/AvocadoEdition_Light/skin/qa/basic/view.answerform.skin.php b/AvocadoEdition_Light/skin/qa/basic/view.answerform.skin.php
index e2364bd..d51f098 100644
--- a/AvocadoEdition_Light/skin/qa/basic/view.answerform.skin.php
+++ b/AvocadoEdition_Light/skin/qa/basic/view.answerform.skin.php
@@ -1,120 +1,119 @@
\ No newline at end of file
+ return true;
+ }
+
+
+ 고객님의 문의에 대한 답변을 준비 중입니다.
+
+
diff --git a/AvocadoEdition_Light/skin/qa/basic/view.skin.php b/AvocadoEdition_Light/skin/qa/basic/view.skin.php
index 03268d4..0fcb719 100644
--- a/AvocadoEdition_Light/skin/qa/basic/view.skin.php
+++ b/AvocadoEdition_Light/skin/qa/basic/view.skin.php
@@ -1,128 +1,130 @@
', 0);
+add_stylesheet(' ', 0);
?>
-
-
+
-
+
-
-
-
-
-
+
+
+
+
+
diff --git a/AvocadoEdition_Light/skin/qa/basic/write.skin.php b/AvocadoEdition_Light/skin/qa/basic/write.skin.php
index 7c78b51..2ab7c23 100644
--- a/AvocadoEdition_Light/skin/qa/basic/write.skin.php
+++ b/AvocadoEdition_Light/skin/qa/basic/write.skin.php
@@ -1,167 +1,173 @@
', 0);
+add_stylesheet(' ', 0);
?>
-
-
-
-
-
-
-" onsubmit="return fwrite_submit(this);" method="post"
+ enctype="multipart/form-data" autocomplete="off">
+
+
+
+
+
+ ';
-} else {
- $option .= "\n".' '."\n".'html ';
-}
+ if ($is_dhtml_editor) {
+ $option_hidden .= ' ';
+ } else {
+ $option .= "\n" . ' ' . "\n" . 'html ';
+ }
-echo $option_hidden;
-?>
+ echo $option_hidden;
+ ?>
-
-
+
-
+
-
\ No newline at end of file
+
diff --git a/AvocadoEdition_Light/skin/search/basic/search.skin.php b/AvocadoEdition_Light/skin/search/basic/search.skin.php
index e341efa..9c0fe03 100644
--- a/AvocadoEdition_Light/skin/search/basic/search.skin.php
+++ b/AvocadoEdition_Light/skin/search/basic/search.skin.php
@@ -1,140 +1,147 @@
', 0);
+add_stylesheet(' ', 0);
?>
-
-
+
+
상세검색
검색조건
- >제목+내용
- >제목
- >내용
- >회원아이디
- >이름
+ >제목+내용
+
+ >제목
+ >내용
+ >회원아이디
+ >이름
검색어 필수
-
+
id="sop_or" name="sop">
OR
id="sop_and" name="sop">
AND
-
+
-
-
+
+
전체검색 결과
- 게시판
- 개
- 게시물
- 개
+ 게시판
+ 개
+ 게시물
+ 개
/ 페이지 열람 중
-
-
+
+ }
+ ?>
-
-
+
+
-
- 검색된 자료가 하나도 없습니다.
-
+
+
+ 검색된 자료가 하나도 없습니다.
+
-
+
-
+
+
-
-
+ $k = 0;
+ for ($idx = $table_index, $k = 0; $idx < count($search_table) && $k < $rows; $idx++) {
+ ?>
+
+
댓글 | ';
- $comment_href = '#c_'.$list[$idx][$i]['wr_id'];
- }
- else
- {
- $comment_def = '';
- $comment_href = '';
- }
- ?>
+ for ($i = 0; $i < count($list[$idx]) && $k < $rows; $i++, $k++) {
+ if ($list[$idx][$i]['wr_is_comment']) {
+ $comment_def = '댓글 | ';
+ $comment_href = '#c_' . $list[$idx][$i]['wr_id'];
+ } else {
+ $comment_def = '';
+ $comment_href = '';
+ }
+ ?>
-
-
- 새창
-
-
-
-
-
-
-
+
+
+ 새창
+
+
+
+
+
+
+
-
-
-
+
+
+
+
-
+
-
\ No newline at end of file
+
diff --git a/AvocadoEdition_Light/skin/search/basic/style.css b/AvocadoEdition_Light/skin/search/basic/style.css
index 4ce7a97..8101e1a 100644
--- a/AvocadoEdition_Light/skin/search/basic/style.css
+++ b/AvocadoEdition_Light/skin/search/basic/style.css
@@ -2,28 +2,140 @@
/* SIR 지운아빠 */
/* 전체검색결과 스킨 */
-#sch_res_detail {padding:0 0 10px;border-bottom:1px solid #e9e9e9;text-align:center}
-#sch_res_detail legend {position:absolute;margin:0;padding:0;font-size:0;line-height:0;text-indent:-9999em;overflow:hidden}
-#sch_res_ov {margin:0 0 10px;padding:10px;border-bottom:1px solid #e9e9e9;background:#f5f6fa;zoom:1}
-#sch_res_ov:after {display:block;visibility:hidden;clear:both;content:""}
-#sch_res_ov h2 {float:left}
-#sch_res_ov dl {float:left;margin:0 0 0 10px}
-#sch_res_ov dt {float:left}
-#sch_res_ov dd {float:left;margin:0 10px 0 5px}
-#sch_res_ov p {float:right;margin:0;padding:0;line-height:1em}
+#sch_res_detail {
+ padding: 0 0 10px;
+ border-bottom: 1px solid #e9e9e9;
+ text-align: center
+}
-#sch_res_board {margin:0 0 10px;padding-left:1px;list-style:none;zoom:1}
-#sch_res_board:after {display:block;visibility:hidden;clear:both;content:""}
-#sch_res_board li {float:left;margin-bottom:-1px}
-#sch_res_board a {display:block;position:relative;margin-left:-1px;padding:6px 0 5px;width:180px;border:1px solid #ddd;text-align:center;letter-spacing:-0.1em;line-height:1.2em;cursor:pointer}
-#sch_res_board a:focus, #sch_res_board a:hover, #sch_res_board a:active {text-decoration:none}
-#sch_res_board .cnt_cmt {font-weight:normal !important}
+#sch_res_detail legend {
+ position: absolute;
+ margin: 0;
+ padding: 0;
+ font-size: 0;
+ line-height: 0;
+ text-indent: -9999em;
+ overflow: hidden
+}
-.sch_res_list {margin:0 0 10px;padding:10px 0 15px}
-.sch_res_list h2 {margin:0 0 15px;font-size:1.2em}
-.sch_res_list ul {margin:0;padding:0;list-style:none}
-.sch_res_list li {margin:0 0 10px;padding:0 0 10px;border-bottom:1px solid #e9e9e9}
-.sch_res_title {display:inline-block;margin:0 0 5px}
-.sch_res_list p {margin:0 0 10px;line-height:1.8em}
-.sch_more {text-align:right}
-.sch_on {color:#ff3061}
\ No newline at end of file
+#sch_res_ov {
+ margin: 0 0 10px;
+ padding: 10px;
+ border-bottom: 1px solid #e9e9e9;
+ background: #f5f6fa;
+ zoom: 1
+}
+
+#sch_res_ov:after {
+ display: block;
+ visibility: hidden;
+ clear: both;
+ content: ""
+}
+
+#sch_res_ov h2 {
+ float: left
+}
+
+#sch_res_ov dl {
+ float: left;
+ margin: 0 0 0 10px
+}
+
+#sch_res_ov dt {
+ float: left
+}
+
+#sch_res_ov dd {
+ float: left;
+ margin: 0 10px 0 5px
+}
+
+#sch_res_ov p {
+ float: right;
+ margin: 0;
+ padding: 0;
+ line-height: 1em
+}
+
+#sch_res_board {
+ margin: 0 0 10px;
+ padding-left: 1px;
+ list-style: none;
+ zoom: 1
+}
+
+#sch_res_board:after {
+ display: block;
+ visibility: hidden;
+ clear: both;
+ content: ""
+}
+
+#sch_res_board li {
+ float: left;
+ margin-bottom: -1px
+}
+
+#sch_res_board a {
+ display: block;
+ position: relative;
+ margin-left: -1px;
+ padding: 6px 0 5px;
+ width: 180px;
+ border: 1px solid #ddd;
+ text-align: center;
+ letter-spacing: -0.1em;
+ line-height: 1.2em;
+ cursor: pointer
+}
+
+#sch_res_board a:focus,
+#sch_res_board a:hover,
+#sch_res_board a:active {
+ text-decoration: none
+}
+
+#sch_res_board .cnt_cmt {
+ font-weight: normal !important
+}
+
+.sch_res_list {
+ margin: 0 0 10px;
+ padding: 10px 0 15px
+}
+
+.sch_res_list h2 {
+ margin: 0 0 15px;
+ font-size: 1.2em
+}
+
+.sch_res_list ul {
+ margin: 0;
+ padding: 0;
+ list-style: none
+}
+
+.sch_res_list li {
+ margin: 0 0 10px;
+ padding: 0 0 10px;
+ border-bottom: 1px solid #e9e9e9
+}
+
+.sch_res_title {
+ display: inline-block;
+ margin: 0 0 5px
+}
+
+.sch_res_list p {
+ margin: 0 0 10px;
+ line-height: 1.8em
+}
+
+.sch_more {
+ text-align: right
+}
+
+.sch_on {
+ color: #ff3061
+}
diff --git a/AvocadoEdition_Light/skin/visit/basic/style.css b/AvocadoEdition_Light/skin/visit/basic/style.css
index 350e4e8..efdf672 100644
--- a/AvocadoEdition_Light/skin/visit/basic/style.css
+++ b/AvocadoEdition_Light/skin/visit/basic/style.css
@@ -2,12 +2,51 @@
/* SIR 지운아빠 */
/* 방문자 집계 */
-#visit {border-bottom:1px dotted #dde4e9}
-#visit div {margin:0 auto;width:970px;zoom:1}
-#visit div:after {display:block;visibility:hidden;clear:both;content:""}
-#visit h2 {float:left;padding:10px 45px 10px 0}
-#visit dl {float:left;margin:0 0 0 10px;padding:0}
-#visit dt {float:left;margin:0;padding:10px 0 10px}
-#visit dd {float:left;margin:0 30px 0 0;padding:10px}
-#visit a {display:inline-block;padding:10px;text-decoration:none}
-#visit a:focus, #visit a:hover {}
\ No newline at end of file
+#visit {
+ border-bottom: 1px dotted #dde4e9
+}
+
+#visit div {
+ margin: 0 auto;
+ width: 970px;
+ zoom: 1
+}
+
+#visit div:after {
+ display: block;
+ visibility: hidden;
+ clear: both;
+ content: ""
+}
+
+#visit h2 {
+ float: left;
+ padding: 10px 45px 10px 0
+}
+
+#visit dl {
+ float: left;
+ margin: 0 0 0 10px;
+ padding: 0
+}
+
+#visit dt {
+ float: left;
+ margin: 0;
+ padding: 10px 0 10px
+}
+
+#visit dd {
+ float: left;
+ margin: 0 30px 0 0;
+ padding: 10px
+}
+
+#visit a {
+ display: inline-block;
+ padding: 10px;
+ text-decoration: none
+}
+
+#visit a:focus,
+#visit a:hover {}
diff --git a/AvocadoEdition_Light/skin/visit/basic/visit.skin.php b/AvocadoEdition_Light/skin/visit/basic/visit.skin.php
index 87e481d..4c1ad68 100644
--- a/AvocadoEdition_Light/skin/visit/basic/visit.skin.php
+++ b/AvocadoEdition_Light/skin/visit/basic/visit.skin.php
@@ -1,27 +1,28 @@
', 0);
+add_stylesheet(' ', 0);
?>
-
-
접속자집계
-
- 오늘
-
- 어제
-
- 최대
-
- 전체
-
-
-
상세보기
-
+
+
접속자집계
+
+ 오늘
+
+ 어제
+
+ 최대
+
+ 전체
+
+
+
상세보기
+
-
\ No newline at end of file
+
diff --git a/AvocadoEdition_Light/templete/txt.bgm.php b/AvocadoEdition_Light/templete/txt.bgm.php
index 00fbe6c..e987a7d 100644
--- a/AvocadoEdition_Light/templete/txt.bgm.php
+++ b/AvocadoEdition_Light/templete/txt.bgm.php
@@ -12,7 +12,8 @@