git-svn-id: http://xe-core.googlecode.com/svn/trunk@166 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
zero 2007-02-23 03:58:10 +00:00
parent 82734fa4f0
commit 4240a96dda
2 changed files with 8 additions and 8 deletions

View file

@ -168,7 +168,7 @@
/** /**
* @brief 댓글의 답글 화면 출력 * @brief 댓글의 답글 화면 출력
**/ **/
function dispCommentReply() { function dispReplyComment() {
// 권한 체크 // 권한 체크
if(!$this->grant->write_comment) return $this->dispMessage('msg_not_permitted'); if(!$this->grant->write_comment) return $this->dispMessage('msg_not_permitted');
@ -198,7 +198,7 @@
/** /**
* @brief 댓글 수정 출력 * @brief 댓글 수정 출력
**/ **/
function dispCommentModify() { function dispModifyComment() {
// 권한 체크 // 권한 체크
if(!$this->grant->write_comment) return $this->dispMessage('msg_not_permitted'); if(!$this->grant->write_comment) return $this->dispMessage('msg_not_permitted');
@ -230,7 +230,7 @@
/** /**
* @brief 댓글 삭제 화면 출력 * @brief 댓글 삭제 화면 출력
**/ **/
function dispCommentDelete() { function dispDeleteComment() {
// 권한 체크 // 권한 체크
if(!$this->grant->write_comment) return $this->dispMessage('msg_not_permitted'); if(!$this->grant->write_comment) return $this->dispMessage('msg_not_permitted');
@ -257,7 +257,7 @@
/** /**
* @brief 엮인글 삭제 화면 출력 * @brief 엮인글 삭제 화면 출력
**/ **/
function dispTrackbackDelete() { function dispDeleteTrackback() {
// 삭제할 댓글번호를 가져온다 // 삭제할 댓글번호를 가져온다
$trackback_srl = Context::get('trackback_srl'); $trackback_srl = Context::get('trackback_srl');

View file

@ -30,10 +30,10 @@
<action name="dispContent" type="view" index="true" /> <action name="dispContent" type="view" index="true" />
<action name="dispWrite" type="view" /> <action name="dispWrite" type="view" />
<action name="dispDelete" type="view" /> <action name="dispDelete" type="view" />
<action name="dispCommentReply" type="view" /> <action name="dispReplyComment" type="view" />
<action name="dispCommentModify" type="view" /> <action name="dispModifyComment" type="view" />
<action name="dispCommentDelete" type="view" /> <action name="dispDeleteComment" type="view" />
<action name="dispTrackbackDelete" type="view" /> <action name="dispDeleteTrackback" type="view" />
<action name="dispLogin" type="view" /> <action name="dispLogin" type="view" />
<action name="dispLogout" type="view" /> <action name="dispLogout" type="view" />
<action name="dispMessage" type="view" /> <action name="dispMessage" type="view" />