diff --git a/adm/shop_admin/itemform.php b/adm/shop_admin/itemform.php
index 8d9926418..0f93269b4 100644
--- a/adm/shop_admin/itemform.php
+++ b/adm/shop_admin/itemform.php
@@ -184,7 +184,7 @@ ul { margin: 0; padding: 0; list-style: none; }
} else { ?>
=$it[it_id]?>
- =icon("보기", "{$g4[shop_path]}/item.php?it_id=$it_id");?>
+ =icon("보기", G4_SHOP_URL."/item.php?it_id=$it_id");?>
사용후기
상품문의
} ?>
@@ -212,11 +212,11 @@ ul { margin: 0; padding: 0; list-style: none; }
| 상품유형 |
- >
- >
- >
- >
- >
+ >
+ >
+ >
+ >
+ >
=help("메인화면에 유형별로 출력할때 사용합니다.\n\n이곳에 체크하게되면 상품리스트에서 유형별로 정렬할때 체크된 상품이 가장 먼저 출력됩니다.");?>
|
@@ -388,20 +388,22 @@ ul { margin: 0; padding: 0; list-style: none; }
- $limg1 = "$g4[path]/data/item/{$it[it_id]}_l1";
+ $limg1 = G4_DATA_PATH."/item/{$it[it_id]}_l1";
if (file_exists($limg1)) {
$size = getimagesize($limg1);
- echo " 삭제";
+ echo " 삭제";
echo "";
}
?>
+ /*
if (function_exists("imagecreatefromjpeg")) {
//echo " 이미지(중), 이미지(소)를 자동생성 하시려면 체크하세요. JPG 파일만 가능합니다. ";
echo " 중, 소 이미지를 자동으로 생성하시는 경우에 체크하세요. (JPG 파일만 가능)";
echo help("이미지(중) 이미지(소) 의 사이즈를 환경설정에서 정한 폭과 높이로 자동생성합니다.\n\nJPG 파일만 가능합니다.");
}
+ */
?>
|
@@ -436,7 +438,7 @@ ul { margin: 0; padding: 0; list-style: none; }
- for ($i=2; $i<=5; $i++) { // 이미지(대)는 5개 ?>
+ for ($i=2; $i<=10; $i++) { // 이미지(대)는 10개 ?>
| 이미지(대) =$i?> |
@@ -445,7 +447,7 @@ ul { margin: 0; padding: 0; list-style: none; }
$limg = "$g4[path]/data/item/{$it[it_id]}_l{$i}";
if (file_exists($limg)) {
$size = getimagesize($limg);
- echo " 삭제";
+ echo " 삭제";
echo " ";
}
?>
@@ -501,7 +503,7 @@ ul { margin: 0; padding: 0; list-style: none; }
$row2 = sql_fetch($sql2);
// 김선용 2006.10
- if(file_exists("{$g4['path']}/data/item/{$row['it_id']}_s"))
+ if(file_exists(G4_DATA_PATH."/item/{$row['it_id']}_s"))
$it_image = "{$row['it_id']}_s";
else
$it_image = "";
@@ -758,7 +760,7 @@ ul { margin: 0; padding: 0; list-style: none; }
$himg_str = "";
- $himg = "$g4[path]/data/item/{$it[it_id]}_h";
+ $himg = G4_DATA_PATH."/item/{$it[it_id]}_h";
if (file_exists($himg)) {
echo "삭제";
$himg_str = " ";
@@ -775,7 +777,7 @@ ul { margin: 0; padding: 0; list-style: none; }
$timg_str = "";
- $timg = "$g4[path]/data/item/{$it[it_id]}_t";
+ $timg = G4_DATA_PATH."/item/{$it[it_id]}_t";
if (file_exists($timg)) {
echo "삭제";
$timg_str = " ";
|