#115. 블로그 모듈에서 퍼머넌트링크 접속시 해당 글만 보여주도록 수정.

기본 블로그 레이아웃의 글 제목에 링크 부여.



git-svn-id: http://xe-core.googlecode.com/svn/sandbox@2404 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2007-08-24 01:38:20 +00:00
parent a290ac4800
commit 29dfac2663
5 changed files with 11 additions and 8 deletions

View file

@ -92,6 +92,7 @@
unset($document_srl);
Context::set('document_srl','',true);
} else {
// 브라우저 타이틀 설정
Context::setBrowserTitle($oDocument->getTitleText());
@ -100,6 +101,12 @@
// 조회수 증가
$oDocument->updateReadedCount();
// 목록수를 1개로 수정 (글이 선택되었을 때만)
$this->list_count = 1;
// 페이지 변수를 제거하여 직접 구하도록 변경
unset($page);
}
}