From 387413378d0ca163606ae2b615655396712b42fc Mon Sep 17 00:00:00 2001 From: gnuboard Date: Thu, 12 Sep 2013 16:52:37 +0900 Subject: [PATCH] =?UTF-8?q?=EC=83=81=EB=8B=A8=20=EC=9C=84=EC=B9=98?= =?UTF-8?q?=ED=91=9C=EC=8B=9C=20=EC=BD=94=EB=93=9C=20=EC=88=98=EC=A0=95=20?= =?UTF-8?q?=EB=B0=8F=20=ED=8C=8C=EC=9D=BC=EB=AA=85=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- shop/item.php | 2 +- shop/list.php | 2 +- shop/{navigation1.inc.php => navigation.inc.php} | 10 +++++----- 3 files changed, 7 insertions(+), 7 deletions(-) rename shop/{navigation1.inc.php => navigation.inc.php} (72%) 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 - +