관리자모드 일부 원본 복구

This commit is contained in:
whitedot
2012-11-02 11:53:34 +09:00
parent d3ab4acee1
commit 50732cfc3b
54 changed files with 2758 additions and 2802 deletions

View File

@ -1,16 +1,16 @@
<?
$sub_menu = '200300';
include_once('./_common.php');
include_once('$g4['path']/lib/mailer.lib.php');
$sub_menu = "200300";
include_once("./_common.php");
include_once("$g4[path]/lib/mailer.lib.php");
auth_check($auth[$sub_menu], 'r');
auth_check($auth[$sub_menu], "r");
$se = sql_fetch('select ma_subject, ma_content from $g4[mail_table] where ma_id = "$ma_id" ');
$se = sql_fetch("select ma_subject, ma_content from $g4[mail_table] where ma_id = '$ma_id' ");
$subject = $se[ma_subject];
$content = $se[ma_content] . '<hr size=0><p><span style="font-size:9pt; font-family:굴림">▶ 더 이상 정보 수신을 원치 않으시면 [<a href="$g4[url]/$g4[bbs]/email_stop.php?mb_id=***&mb_md5=***" target="_blank">수신거부</a>] 해 주십시오.</span></p>';
$content = $se[ma_content] . "<hr size=0><p><span style='font-size:9pt; font-family:굴림'>▶ 더 이상 정보 수신을 원치 않으시면 [<a href='$g4[url]/$g4[bbs]/email_stop.php?mb_id=***&mb_md5=***' target='_blank'>수신거부</a>] 해 주십시오.</span></p>";
echo '<span style="font-size:9pt;">$subject</span>';
echo '<hr size=0>';
echo "<span style='font-size:9pt;'>$subject</span>";
echo "<hr size=0>";
echo $content;
?>