mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-02 01:52:10 +09:00
$_GET 변수를 Context::get()으로 대체
쓰이지 않는 변수 $_get 제거. $_GET 변수 대신 Context::get() 사용.
This commit is contained in:
parent
eb2d12ee4c
commit
abe2026f98
1 changed files with 1 additions and 2 deletions
|
|
@ -402,8 +402,7 @@ class boardView extends board
|
|||
}
|
||||
|
||||
// set the current page of documents
|
||||
$_get = $_GET;
|
||||
if(!$args->page && ($_GET['document_srl'] || $_GET['entry']))
|
||||
if(!$args->page && (Context::get('document_srl') || Context::get('entry')))
|
||||
{
|
||||
$oDocument = $oDocumentModel->getDocument(Context::get('document_srl'));
|
||||
if($oDocument->isExists() && !$oDocument->isNotice())
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue