묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
회원가입시나 수정시 닉네임/ID /E-mail 은 중복체크를 하자나요 . 이름도 가능할까요?
2005.04.25 13:57
회원가입시나 수정시 닉네임/ID /E-mail 은 중복체크를 하자나요 . 이름도 가능할까요?
$lang->msg_exists_nick_name = \
윗부분에서..
if(($temp[0] > $bbs_width) || ($temp[1] > $bbs_height)) { // 지정된 게시판 가로 세로 크기보다 클경우
$ratioh = $bbs_height/$temp[1]; // 게시판 height에 대한 그림파일의 height 비율 계산.
$ratiow = $bbs_width/$temp[0]; // 게시판 width에 대한 그림파일의 width 비율 계산.
$img_width = $temp[0]*$ratioh; // 그림파일의 width ratio 적용.
$img_height = $temp[1]*$ratioh; // 그림파일의 height ratio 적용.
if ($img_width > $bbs_width){ // 크기제한 보다 그림의 가로 크기가 클경우
$img_width = $temp[0]*$ratiow; // 그림파일의 width ratio 적용
$img_height = $temp[1]*$ratiow; // 그림파일의 height ratio 적용.
}
}
else {
$img_width = $temp[0]; // 지정된 크기보다 작을경우 원사이즈대로 출력
$img_height = $temp[1];
}
이걸 모두 지우니까 됩니다. 자문자답했네요;;