g4s 13-04-26일자 코드 반영

This commit is contained in:
chicpro
2013-04-26 10:54:44 +09:00
parent 091092b46a
commit 478605e149
286 changed files with 4409 additions and 3599 deletions

View File

@ -1,4 +1,4 @@
<?
<?php
$sub_menu = "200300";
include_once('./_common.php');
include_once(G4_CKEDITOR_PATH.'/ckeditor.lib.php');
@ -29,9 +29,9 @@ include_once('./admin.head.php');
<p>메일 내용에 {이름} , {별명} , {회원아이디} , {이메일} 처럼 내용에 삽입하면 해당 내용에 맞게 변환하여 메일을 발송합니다.</p>
<form name="fmailform" id="fmailform" action="./mail_update.php" onsubmit="return fmailform_check(this);" method="post">
<input type="hidden" name="w" value="<?=$w?>" id="w">
<input type="hidden" name="ma_id" value="<?=$ma['ma_id']?>" id="ma_id">
<input type="hidden" name="token" value="<?=$token?>" id="token">
<input type="hidden" name="w" value="<?php echo $w ?>" id="w">
<input type="hidden" name="ma_id" value="<?php echo $ma['ma_id'] ?>" id="ma_id">
<input type="hidden" name="token" value="<?php echo $token ?>" id="token">
<table class="frm_tbl">
<colgroup>
<col class="grid_3">
@ -40,11 +40,11 @@ include_once('./admin.head.php');
<tbody>
<tr>
<th scope="row"><label for="ma_subject">메일 제목<strong class="sound_only">필수</strong></label></th>
<td><input type="text" name="ma_subject" value="<?=$ma['ma_subject']?>" id="ma_subject" required class="required frm_input" size="100"></td>
<td><input type="text" name="ma_subject" value="<?php echo $ma['ma_subject'] ?>" id="ma_subject" required class="required frm_input" size="100"></td>
</tr>
<tr>
<th scope="row"><label for="ma_content">메일 내용<strong class="sound_only">필수</strong></label></th>
<td><?=editor_html("ma_content", $ma['ma_content'], '400');?></td>
<td><?php echo editor_html("ma_content", $ma['ma_content'], '400'); ?></td>
</tr>
</tbody>
</table>
@ -78,6 +78,6 @@ function fmailform_check(f)
document.fmailform.ma_subject.focus();
</script>
<?
<?php
include_once('./admin.tail.php');
?>