short tag 오류 수정
This commit is contained in:
@ -118,26 +118,26 @@ function imageview(id, w, h)
|
||||
<ul id="qnb">
|
||||
<?php if(defined('G4_USE_SHOP')) { ?>
|
||||
<li>
|
||||
<a href="<?=G4_ADMIN_URL?>/shop_admin/orderlist.php">
|
||||
<img src="<?=G4_ADMIN_URL?>/shop_admin/img/qnb_sodr.jpg" alt="" width="40" height="40">
|
||||
<a href="<?php echo G4_ADMIN_URL; ?>/shop_admin/orderlist.php">
|
||||
<img src="<?php echo G4_ADMIN_URL; ?>/shop_admin/img/qnb_sodr.jpg" alt="" width="40" height="40">
|
||||
주문관리
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="<?=G4_ADMIN_URL?>/shop_admin/itemlist.php">
|
||||
<img src="<?=G4_ADMIN_URL?>/shop_admin/img/qnb_sit.jpg" alt="" width="40" height="40">
|
||||
<a href="<?php echo G4_ADMIN_URL; ?>/shop_admin/itemlist.php">
|
||||
<img src="<?php echo G4_ADMIN_URL; ?>/shop_admin/img/qnb_sit.jpg" alt="" width="40" height="40">
|
||||
상품관리
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="<?=G4_ADMIN_URL?>/shop_admin/itemqalist.php">
|
||||
<img src="<?=G4_ADMIN_URL?>/shop_admin/img/qnb_sqna.jpg" alt="" width="40" height="40">
|
||||
<a href="<?php echo G4_ADMIN_URL; ?>/shop_admin/itemqalist.php">
|
||||
<img src="<?php echo G4_ADMIN_URL; ?>/shop_admin/img/qnb_sqna.jpg" alt="" width="40" height="40">
|
||||
상품문의
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="<?=G4_ADMIN_URL?>/shop_admin/itempslist.php">
|
||||
<img src="<?=G4_ADMIN_URL?>/shop_admin/img/qnb_sps.jpg" alt="" width="40" height="40">
|
||||
<a href="<?php echo G4_ADMIN_URL; ?>/shop_admin/itempslist.php">
|
||||
<img src="<?php echo G4_ADMIN_URL; ?>/shop_admin/img/qnb_sps.jpg" alt="" width="40" height="40">
|
||||
사용후기
|
||||
</a>
|
||||
</li>
|
||||
|
||||
@ -108,7 +108,7 @@ include_once('./admin.head.php');
|
||||
<?php } ?>
|
||||
</tbody>
|
||||
</table>
|
||||
<textarea name="ma_list" style="display:none"><?=$ma_list?></textarea>
|
||||
<textarea name="ma_list" style="display:none"><?php echo $ma_list; ?></textarea>
|
||||
</div>
|
||||
|
||||
<div class="btn_confirm">
|
||||
|
||||
@ -495,7 +495,7 @@ echo "<meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\">";
|
||||
?>
|
||||
<script>
|
||||
if (confirm("계속 입력하시겠습니까?"))
|
||||
//location.href = "<?="./itemform.php?it_id=$it_id&sort1=$sort1&sort2=$sort2&sel_ca_id=$sel_ca_id&sel_field=$sel_field&search=$search&page=$page"?>";
|
||||
//location.href = "<?php echo "./itemform.php?it_id=$it_id&sort1=$sort1&sort2=$sort2&sel_ca_id=$sel_ca_id&sel_field=$sel_field&search=$search&page=$page"?>";
|
||||
location.href = "<?php echo "./itemform.php?$qstr"; ?>";
|
||||
else
|
||||
location.href = "<?php echo "./itemlist.php?$qstr"; ?>";
|
||||
|
||||
@ -1,32 +1,32 @@
|
||||
<?
|
||||
<?
|
||||
//
|
||||
// 조병완(korone)님 , 남규아빠(eagletalon)님께서 만들어 주셨습니다.
|
||||
//
|
||||
|
||||
$sub_menu = "100400";
|
||||
include_once("./_common.php");
|
||||
$sub_menu = "100400";
|
||||
include_once("./_common.php");
|
||||
|
||||
auth_check($auth[$sub_menu], "r");
|
||||
|
||||
$g4[title] = "버전확인";
|
||||
$g4[title] = "버전확인";
|
||||
|
||||
include_once("./admin.head.php");
|
||||
include_once("$g4[path]/lib/mailer.lib.php");
|
||||
include_once("./admin.head.php");
|
||||
include_once("$g4[path]/lib/mailer.lib.php");
|
||||
|
||||
echo "현재버전 : <b>";
|
||||
$args = "head -1 ".$g4[path]."/HISTORY";
|
||||
system($args);
|
||||
$args = "head -1 ".$g4[path]."/HISTORY";
|
||||
system($args);
|
||||
echo "</b>";
|
||||
?>
|
||||
?>
|
||||
|
||||
<table width=100% border="0" align="left" cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<td>
|
||||
<textarea name="textarea" style='width:100%; line-height:150%; padding:10px;' rows="25" class=tx readonly><?=implode("", file("$g4[path]/HISTORY"));?></textarea>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table width=100% border="0" align="left" cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<td>
|
||||
<textarea name="textarea" style='width:100%; line-height:150%; padding:10px;' rows="25" class=tx readonly><?php echo implode("", file(G4_PATH.'/HISTORY'));?></textarea>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<?
|
||||
include_once("./admin.tail.php");
|
||||
?>
|
||||
<?
|
||||
include_once("./admin.tail.php");
|
||||
?>
|
||||
|
||||
Reference in New Issue
Block a user