사용자단 따옴표 작업 bbs/good.php 까지 진행

This commit is contained in:
whitedot
2012-11-29 18:19:25 +09:00
parent cbf7e9c21e
commit 091f9deade
69 changed files with 587 additions and 587 deletions

View File

@ -1,5 +1,5 @@
<?
include_once("./_common.php");
include_once('./_common.php');
if (!$member[mb_id])
alert("회원만 이용하실 수 있습니다.");
@ -26,8 +26,8 @@ else
alert("\$kind 값을 넘겨주세요.");
}
$g4[title] = "{$t} 쪽지 보기";
include_once("$g4[path]/head.sub.php");
$g4['title'] = "{$t} 쪽지 보기";
include_once($g4['path'].'/head.sub.php');
$sql = " select * from $g4[memo_table]
where me_id = '$me_id'
@ -61,10 +61,10 @@ else
$mb = get_member($memo["me_{$unkind}_mb_id"]);
echo "<script type='text/javascript' src='$g4[path]/js/sideview.js'></script>";
echo "<script src='$g4['path']/js/sideview.js'></script>";
$member_skin_path = "$g4[path]/skin/member/$config[cf_member_skin]";
$member_skin_path = "$g4['path']/skin/member/$config[cf_member_skin]";
include_once("$member_skin_path/memo_view.skin.php");
include_once("$g4[path]/tail.sub.php");
include_once($g4['path'].'/tail.sub.php');
?>