|
diff --git a/adm/board_form_update.php b/adm/board_form_update.php
index c49f04d25..7918d6a8a 100644
--- a/adm/board_form_update.php
+++ b/adm/board_form_update.php
@@ -44,6 +44,7 @@ $bo_category_list = str_replace($src_char, $dst_char, $bo_category_list);
$sql_common = " gr_id = '{$_POST['gr_id']}',
bo_subject = '{$_POST['bo_subject']}',
+ bo_mobile_subject = '{$_POST['bo_mobile_subject']}',
bo_device = '{$_POST['bo_device']}',
bo_admin = '{$_POST['bo_admin']}',
bo_list_level = '{$_POST['bo_list_level']}',
diff --git a/mobile/head.php b/mobile/head.php
index 6d6e604d9..e4a0a209e 100644
--- a/mobile/head.php
+++ b/mobile/head.php
@@ -88,8 +88,12 @@ include_once(G4_LIB_PATH.'/popular.lib.php');
$sql2 .= " order by bo_order ";
$result2 = sql_query($sql2);
for ($bi=0; $row2=sql_fetch_array($result2); $bi++) { // bi 는 board index
+ $bo_subject = $row2['bo_subject'];
+ if (G4_IS_MOBILE && $row2['bo_mobile_subject']) {
+ $bo_subject = $row2['bo_mobile_subject'];
+ }
?>
-
+
|