묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
하루에 쓸수 있는 글자수 제한을 걸었는데요 질문이요.
2016.03.18 10:44
제가 게시판마다 글자수를 다르게 제한하고 싶어서
세진님이 올렸던 글자수제한 애드온을 쓰는게 아니라
제한을 거는 소스를 게시판 스킨에 집어 넣어서 했는데요.
<block cond="$mid=='test1'">
{@
$oDB = &DB::getInstance();
$query = $oDB->_query('select count(*) as total from xe_documents where module_srl = '.$module_info->module_srl.' and user_id = "'.$logged_info->user_id.'"');
$result = $oDB->_fetch($query);
}
<script type="text/javascript" cond="$result->total>2">
alert("하루에 쓸 수 있는 게시물은 3개까지입니다.");
history.go(-1);
</script>
</block>
이 소스를 게시판 스킨에 집어넣었어요.
글자수 제한은 아주 잘되는데.. 문제는 글자수제한이 걸린 기간...이라고 해야하나
하루에 3개제한을 하고 싶은데.. 24시간이 지나도 계속 제한이 걸려요.
이거를 어찌어찌하면 될것 같은데.. 어떻게 해야할지 모르겠네요.
뭔가 알것같으신분은 도움좀 부탁드립니다ㅠㅠ