분류 사용시 기본설정으로 추가되는 [공지] 뺄수 있나요? 정보
분류 사용시 기본설정으로 추가되는 [공지] 뺄수 있나요?본문
분류 사용시 기본설정으로 추가되는 [공지] 뺄수 있나요?
댓글 전체
해당 게시판 write.skin.php 밑쯤 보시면
<?
// 관리자라면 분류 선택에 '공지' 옵션을 추가함
if ($is_admin)
{
echo "
if (typeof(document.fwrite.ca_name) != 'undefined')
{
document.fwrite.ca_name.options.length += 1;
document.fwrite.ca_name.options[document.fwrite.ca_name.options.length-1].value = '공지';
document.fwrite.ca_name.options[document.fwrite.ca_name.options.length-1].text = '공지';
}";
}
?>
있습니다. 빼주세요
<?
// 관리자라면 분류 선택에 '공지' 옵션을 추가함
if ($is_admin)
{
echo "
if (typeof(document.fwrite.ca_name) != 'undefined')
{
document.fwrite.ca_name.options.length += 1;
document.fwrite.ca_name.options[document.fwrite.ca_name.options.length-1].value = '공지';
document.fwrite.ca_name.options[document.fwrite.ca_name.options.length-1].text = '공지';
}";
}
?>
있습니다. 빼주세요