미채택 완료

내용 필수 조건 없이 글 작성

bbs/write_update 에서

 

if ($bo_table != "basic1" || $bo_table != "basic2" || $bo_table != "basic3" || $bo_table != "basic4") {
    if ($wr_content == '') {
        $msg[] = '<strong>내용</strong>을 입력하세요.';
    }
}

 

skin write_skin

 

f ($bo_table == "basic1" || $bo_table == "basic2" || $bo_table == "basic3" || $bo_table== "basic4") {
    $editor_js = '';
    $editor_js .= get_editor_js('wr_content', $is_dhtml_editor);
}

 

이거 아닌가요? 

 

이런식으로 1개만 조건을 붙이면 적용 되는데 다수를 붙이면 안됩니다... 코드 어떤 부분이 잘못 된걸까요?

 

f ($bo_table == "basic1") {
    $editor_js = '';
    $editor_js .= get_editor_js('wr_content', $is_dhtml_editor);
}

 

|

답변 1개

get_editor_js 말고

아래에있는 chk_editor_js를 해당 조건으로 감싸주세요 물론 조건은 chk를 할 게시판만 넣으시면 됩니다

답변을 작성하려면 로그인이 필요합니다.