묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
애드온을 수정 중인데 도움 바랍니다. ㅠㅠ
2014.11.11 20:17
아래는 $flag 변수가 부정이면 가입 못하게 폼 띄우는건데요
$flag 변수가 참이면 뒷페이지(뒤로가기 누른것처럼)로 이동시키게 하고 싶은데 어떻게 해야할까요??
if(!$flag)
{
$this->stop_proc = TRUE;
$this->error = Context::getLang('msg_not_allowed_nickname_');
}
else if($flag)
{
이부분...
}
$script = "
<script type=\"text/javascript\">
//<![CDATA[
history.back();
//]]>
</script>
";
Context::addHtmlFooter($script);
이렇게 해보세요