묻고답하기
관리자 권한 수정...
2008.12.27 21:31
완전한 비밀글 작성 게시판을 쓰고 싶은데...
예를 들어 비밀글 작성시 무조건 암호를 입력해야하구요.
그리고 볼때도 무조건 비밀번호를 입력해야 하는 경우 볼수 있도록 해야하는데...
작성은 관한하게 해결했는데...
관리자로 로그인 했을때는 무조건 비밀글도 보게 되니깐 어떻게 해야할지 모르겠네요.
아님 다른 방법 없나요.
view_document.php 의 아래 부분을 수정하면 될거 같은데요.
<!--@if($oDocument->isSecret() && !$oDocument->isGranted())-->
<!--%import("filter/input_password.xml")-->
<div class="secretContent">
<form action="./" method="get" onsubmit="return procFilter(this, input_password)">
<input type="hidden" name="mid" value="{$mid}" />
<input type="hidden" name="page" value="{$page}" />
<input type="hidden" name="document_srl" value="{$oDocument->document_srl}" />
<div class="title">{$lang->msg_is_secret}</div>
<div class="content"><input type="password" name="password" id="cpw" class="inputTypeText" /><span class="button"><input type="submit" value="{$lang->cmd_input}" accesskey="s" /></span></div>
</form>
</div>
<!--@else-->
{$oDocument->getContent()}
<!--@end-->
간단하게 수정 할수 있는 방법 없나요..
방법을 알려주세요.