diff --git a/.gitignore b/.gitignore
index be427cb2e..96ca0ceec 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,4 +1,5 @@
!.gitignore
+.htaccess
data/
test/
sirgle/
diff --git a/adm/boardgroup_list.php b/adm/boardgroup_list.php
index 4b735294c..ff14489dd 100644
--- a/adm/boardgroup_list.php
+++ b/adm/boardgroup_list.php
@@ -101,7 +101,7 @@ $colspan = 11;
그룹아이디 |
제목 |
- 그룹관리자 |
+ 그룹관리자 |
게시판 |
접근 사용 |
접근 회원수 |
@@ -144,7 +144,7 @@ $colspan = 11;
-
+
|
|
diff --git a/adm/config_form.php b/adm/config_form.php
index 3df62ab63..125032e68 100644
--- a/adm/config_form.php
+++ b/adm/config_form.php
@@ -120,6 +120,11 @@ if(!isset($config['cf_analytics'])) {
ADD `cf_analytics` TEXT NOT NULL AFTER `cf_intercept_ip` ", true);
}
+if(!isset($config['cf_add_meta'])) {
+ sql_query(" ALTER TABLE `{$g5['config_table']}`
+ ADD `cf_add_meta` TEXT NOT NULL AFTER `cf_analytics` ", true);
+}
+
if(!isset($config['cf_sms_use'])) {
sql_query(" ALTER TABLE `{$g5['config_table']}`
ADD `cf_sms_use` varchar(255) NOT NULL DEFAULT '' AFTER `cf_cert_limit`,
@@ -418,6 +423,13 @@ if ($config['cf_icode_id'] && $config['cf_icode_pw']) {
+
+ |
+
+
+
+ |
+
diff --git a/adm/config_form_update.php b/adm/config_form_update.php
index e5be0a956..0a2682508 100644
--- a/adm/config_form_update.php
+++ b/adm/config_form_update.php
@@ -53,6 +53,7 @@ $sql = " update {$g5['config_table']}
cf_possible_ip = '".trim($_POST['cf_possible_ip'])."',
cf_intercept_ip = '".trim($_POST['cf_intercept_ip'])."',
cf_analytics = '{$_POST['cf_analytics']}',
+ cf_add_meta = '{$_POST['cf_add_meta']}',
cf_member_skin = '{$_POST['cf_member_skin']}',
cf_use_homepage = '{$_POST['cf_use_homepage']}',
cf_req_homepage = '{$_POST['cf_req_homepage']}',
diff --git a/config.php b/config.php
index d4ad12e70..27820488d 100644
--- a/config.php
+++ b/config.php
@@ -156,4 +156,7 @@ define('G5_SMTP', '127.0.0.1');
// 게시판에서 링크의 기본개수를 말합니다.
// 필드를 추가하면 이 숫자를 필드수에 맞게 늘려주십시오.
define('G5_LINK_COUNT', 2);
+
+// 썸네일 jpg Quality 설정
+define('G5_THUMB_JPG_QUALITY', 90);
?>
\ No newline at end of file
diff --git a/head.sub.php b/head.sub.php
index b1988fe05..e1a2942e2 100644
--- a/head.sub.php
+++ b/head.sub.php
@@ -41,6 +41,9 @@ if (G5_IS_MOBILE) {
echo ''.PHP_EOL;
echo ''.PHP_EOL;
}
+
+if($config['cf_add_meta'])
+ echo $config['cf_add_meta'].PHP_EOL;
?>
'pc' order by gr_id, bo_table ";
+$sql = " select bo_table from `{$g5['board_table']}` a left join `{$g5['group_table']}` b on (a.gr_id=b.gr_id) where a.bo_device <> 'pc' order by b.gr_order, a.bo_order ";
$result = sql_query($sql);
for ($i=0; $row=sql_fetch_array($result); $i++) {
// 이 함수가 바로 최신글을 추출하는 역할을 합니다.