먼저

bbs/scipt/script_write.php 파일을 찾아서

아래와 같이 주석처리 해 주세요

<? } ?>

  if(!document.write.subject.value)
  {
   alert('제목을 입력하여 주세요.');
   document.write.subject.focus();
   return false;
  }

// if(!document.write.memo.value)
// {
//  alert('내용을 입력하여 주세요.');
//  document.write.memo.focus();
//  return false;
//  }

  document.check_attack.check.value=1;
  show_waiting();
  hideImageBox();

  return true;
}


이렇게만 하시면 "내용을 입력하셔야 합니다" 란 메시지가 뜨는데요

이팁은 이 전분들의 팁을 적용해 주시면 됩니다.

즉,

bbs/write_ok.php 파일을 찾아서

아래와 같이 주석처리 해 주시면 됩니다.

if(isblank($subject)) Error("제목을 입력하셔야 합니다");
       // if(isblank($memo)) Error("내용을 입력하셔야 합니다");