diff --git a/shop/item.php b/shop/item.php index 894456c5f..0009b07c4 100644 --- a/shop/item.php +++ b/shop/item.php @@ -79,7 +79,7 @@ else // 분류 위치 // HOME > 1단계 > 2단계 ... > 6단계 분류 $ca_id = $it['ca_id']; -include G4_SHOP_PATH.'/navigation1.inc.php'; +include G4_SHOP_PATH.'/navigation.inc.php'; // 이 분류에 속한 하위분류 출력 include G4_SHOP_PATH.'/listcategory.inc.php'; diff --git a/shop/list.php b/shop/list.php index aac5496bb..2c3d2ed08 100644 --- a/shop/list.php +++ b/shop/list.php @@ -51,7 +51,7 @@ if ($is_admin) '.stripslashes($ca['ca_head_html']).''; diff --git a/shop/navigation1.inc.php b/shop/navigation.inc.php similarity index 72% rename from shop/navigation1.inc.php rename to shop/navigation.inc.php index 1a0245f83..655c721a4 100644 --- a/shop/navigation1.inc.php +++ b/shop/navigation.inc.php @@ -3,7 +3,7 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가 if ($ca_id) { - $str = $bar = ""; + $navigation = $bar = ""; $len = strlen($ca_id) / 2; for ($i=1; $i<=$len; $i++) { @@ -20,16 +20,16 @@ if ($ca_id) $sct_bg = 'sct_bg'; else $sct_bg = ''; - $str .= $bar.''.$row['ca_name'].''; + $navigation .= $bar.''.$row['ca_name'].''; } } else - $str = $g4['title']; + $navigation = $g4['title']; -//if ($it_id) $str .= " > $it[it_name]"; +//if ($it_id) $navigation .= " > $it[it_name]"; ?>
Home - +