쪽지 2의 파일첨부 관련 안내 메시지.. (버전 2.0.39) 정보
쪽지 2의 파일첨부 관련 안내 메시지.. (버전 2.0.39)본문
설정에서 파일첨부 기능을 꺼 놓아도 쪽지 보내기에선 계속 첨부파일 사이즈를 안내 해주기에 회원분들이 종종 파일 첨부에 대해 문의를 하게 되더군요.. 그래서 파일 첨부 기능을 꺼 놓았을때는 안내 메세지가 나오지 않도록
memo2_bottom.skin.php 파일에 <?=($config[cf_memo_use_file])?'':'<!--';?>와 <?=($config[cf_memo_use_file])?'':'-->'; ?>를 아래와 같이 추가했습니다.
<?=($config[cf_memo_use_file])?'':'<!--';?>
<tr>
<td width="185"></td>
<td height="20" align=left>
<span class="style10">
* 첨부가능한 파일의 최대 용량은 <?=ini_get("upload_max_filesize")?> 입니다.
</span></td>
</tr>
<?=($config[cf_memo_use_file])?'':'-->'; ?>
memo2_bottom.skin.php 파일에 <?=($config[cf_memo_use_file])?'':'<!--';?>와 <?=($config[cf_memo_use_file])?'':'-->'; ?>를 아래와 같이 추가했습니다.
<?=($config[cf_memo_use_file])?'':'<!--';?>
<tr>
<td width="185"></td>
<td height="20" align=left>
<span class="style10">
* 첨부가능한 파일의 최대 용량은 <?=ini_get("upload_max_filesize")?> 입니다.
</span></td>
</tr>
<?=($config[cf_memo_use_file])?'':'-->'; ?>
추천
0
0
댓글 전체
아~ 이거는 쪽지4에서도 깜박했네요. 감사합니다.