diff --git a/adm/board_list.php b/adm/board_list.php
index 7a9639926..34af9d1af 100644
--- a/adm/board_list.php
+++ b/adm/board_list.php
@@ -147,22 +147,22 @@ $colspan = 15;
-
+
|
-
-
+ |
+
|
-
-
+ |
+
|
-
-
+ |
+
|
-
-
+ |
+
|
diff --git a/adm/css/admin.css b/adm/css/admin.css
index 6798287b1..570ce4688 100644
--- a/adm/css/admin.css
+++ b/adm/css/admin.css
@@ -348,9 +348,6 @@ tfoot td {font-weight:bold;text-align:center}
.mb_intercept_msg {color:#f59fe4}
#point_mng {margin-top:50px}
-/* 게시판관리 목록 */
-#fboardlist .bo_subject {width:90%}
-
/* 게시판추가/수정 */
#anc_bo_extra .td_grpset label {width:auto}
#anc_bo_extra .td_grpset input {margin:0}
@@ -819,4 +816,4 @@ strong.sodr_nonpay {display:block;padding:5px 0;text-align:right}
#post_code #result ul {margin:0;padding:0;border-bottom:1px solid #dde4e9;background:#f0f5fc;list-style:none}
#post_code #result li {padding:10px;border:1px solid #dde4e9;border-bottom:0}
#post_code #result li div {margin:4px 0 0;color:#738D94}
-#post_code #result li div:before {content:"▶ "}
\ No newline at end of file
+#post_code #result li div:before {content:"▶ "}
diff --git a/adm/member_list.php b/adm/member_list.php
index 1f6a18c31..861c3dd42 100644
--- a/adm/member_list.php
+++ b/adm/member_list.php
@@ -64,7 +64,7 @@ include_once('./admin.head.php');
$sql = " select * {$sql_common} {$sql_search} {$sql_order} limit {$from_record}, {$rows} ";
$result = sql_query($sql);
-$colspan = 15;
+$colspan = 16;
?>
@@ -126,7 +126,7 @@ $colspan = 15;
아이디 |
이름 |
- 본인확인 |
+ 본인확인 |
휴대폰 |
상태/권한 |
최종접속 |
@@ -135,9 +135,10 @@ $colspan = 15;
| 닉네임 |
- 메일 인증 |
+ 메일 인증 |
정보 공개 |
- 메일 수신 |
+ 메일 수신 |
+ SMS 수신 |
성인 인증 |
접근 차단 |
전화번호 |
@@ -217,7 +218,7 @@ $colspan = 15;
|
|
-
+ |
>
>
@@ -238,9 +239,22 @@ $colspan = 15;
|
|
Yes':'No'; ?> |
- value="1"> |
- value="1"> |
- value="1"> |
+
+
+ value="1" id="mb_open_">
+ |
+
+
+ value="1" id="mb_mailling_">
+ |
+
+
+ value="1" id="mb_sms_">
+ |
+
+
+ value="1" id="mb_adult_">
+ |
value="" id="mb_intercept_date_" title="">
diff --git a/adm/member_list_update.php b/adm/member_list_update.php
index cf99e4c6c..6c5049a86 100644
--- a/adm/member_list_update.php
+++ b/adm/member_list_update.php
@@ -35,6 +35,7 @@ if ($_POST['act_button'] == "선택수정") {
set mb_level = '{$_POST['mb_level'][$k]}',
mb_intercept_date = '{$_POST['mb_intercept_date'][$k]}',
mb_mailling = '{$_POST['mb_mailling'][$k]}',
+ mb_sms = '{$_POST['mb_sms'][$k]}',
mb_open = '{$_POST['mb_open'][$k]}',
mb_certify = '{$_POST['mb_certify'][$k]}',
mb_adult = '{$mb_adult}'
diff --git a/common.php b/common.php
index 5dd46b317..e28288fe8 100644
--- a/common.php
+++ b/common.php
@@ -466,13 +466,23 @@ include_once(G5_BBS_PATH.'/visit_insert.inc.php');
// common.php 파일을 수정할 필요가 없도록 확장합니다.
+$extend_file = array();
$tmp = dir(G5_EXTEND_PATH);
while ($entry = $tmp->read()) {
// php 파일만 include 함
if (preg_match("/(\.php)$/i", $entry))
- include_once(G5_EXTEND_PATH.'/'.$entry);
+ $extend_file[] = $entry;
}
+if(!empty($extend_file) && is_array($extend_file)) {
+ natsort($extend_file);
+
+ foreach($extend_file as $file) {
+ include_once(G5_EXTEND_PATH.'/'.$file);
+ }
+}
+unset($extend_file);
+
ob_start();
// 자바스크립트에서 go(-1) 함수를 쓰면 폼값이 사라질때 해당 폼의 상단에 사용하면
| |