묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
회원가입시나 수정시 닉네임/ID /E-mail 은 중복체크를 하자나요 . 이름도 가능할까요?
2005.10.13 19:15
회원가입시나 수정시 닉네임/ID /E-mail 은 중복체크를 하자나요 . 이름도 가능할까요?
$lang->msg_exists_nick_name = \
댓글 3
-
조민
2005.10.13 19:20
-
조민
2005.10.13 19:23
*찾는 방법은 : outlogin.php 파일 소스중
// 최근 설문조사 (일반 게시판 형)
function print_survey($skinname, $title, $id, $textlen=30) {
위에 내용 약간 윗 부분에 있습니다..
홈페이지 알짜팁 : http://tipkorea.om - -
안영국
2005.10.13 21:57
조민님 감사합니다.
해결했습니다
$name = stripslashes($data[name]);
$subject = cut_str(stripslashes($data[subject]),$textlen)."</font></b>";
$date = date($datetype, $data[reg_date]);
if($data[total_comment]) $comment = "[".$data[total_comment]."]"; else $comment="";
위에 내용을 아래 처럼 바꾸세요..
$name = stripslashes($data[name]);
$subject = cut_str(stripslashes($data[subject]),$textlen)."</font></b>";
$date = date($datetype, $data[reg_date]);
if($data[total_comment]) $comment = "".$data[total_comment].""; else $comment="";