diff --git a/AvocadoEdition_Light/adm/menu_list.php b/AvocadoEdition_Light/adm/menu_list.php
index 30d4b81..bff443f 100644
--- a/AvocadoEdition_Light/adm/menu_list.php
+++ b/AvocadoEdition_Light/adm/menu_list.php
@@ -23,7 +23,7 @@ $result = sql_query($sql);
$g5['title'] = "메뉴설정";
include_once "./admin.head.php";
-$colspan = 9;
+$colspan = 11;
?>
diff --git a/AvocadoEdition_Light/skin/latest/schedule/latest.skin.php b/AvocadoEdition_Light/skin/latest/schedule/latest.skin.php
index dfeebc1..d8cf814 100644
--- a/AvocadoEdition_Light/skin/latest/schedule/latest.skin.php
+++ b/AvocadoEdition_Light/skin/latest/schedule/latest.skin.php
@@ -88,19 +88,19 @@ if ($month == "12")
$j = 0; // layer id
// 내용을 보여주는 부분
while ($row = sql_fetch_array($result)) { // 제목글 뽑아서 링크 문자열 만들기..
- if (substr($row[wr_1], 0, 6) < $year . $sel_mon) {
+ if (substr($row["wr_1"], 0, 6) < $year . $sel_mon) {
$start_day = 1;
$start_day = (int) $start_day;
} else {
- $start_day = substr($row[wr_1], 6, 2);
+ $start_day = substr($row["wr_1"], 6, 2);
$start_day = (int) $start_day;
}
- if (substr($row[wr_2], 0, 6) > $year . $sel_mon) {
+ if (substr($row["wr_2"], 0, 6) > $year . $sel_mon) {
$end_day = $lastday[$month];
$end_day = (int) $end_day;
} else {
- $end_day = substr($row[wr_2], 6, 2);
+ $end_day = substr($row["wr_2"], 6, 2);
$end_day = (int) $end_day;
}
@@ -108,8 +108,8 @@ if ($month == "12")
$imgown = 'icon';
for ($i = $start_day; $i <= $end_day; $i++) {
- if (strlen($row[wr_3]) > 0) { // 입력된 아이콘 값이 있을 때
- $imgown = $row[wr_3];
+ if (strlen($row["wr_3"]) > 0) { // 입력된 아이콘 값이 있을 때
+ $imgown = $row["wr_3"];
}
$j++; // layer ID
@@ -123,17 +123,17 @@ if ($month == "12")