mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 01:01:41 +09:00
Fix missing page_navigation on first page of saved document list
This commit is contained in:
parent
9fc6378afe
commit
fbc06808ed
1 changed files with 1 additions and 1 deletions
|
|
@ -173,7 +173,7 @@ class documentView extends document
|
|||
$args = new stdClass();
|
||||
$args->member_srl = $logged_info->member_srl;
|
||||
$args->statusList = array($this->getConfigStatus('temp'));
|
||||
$args->page = (int)Context::get('page');
|
||||
$args->page = (int)Context::get('page') ?: 1;
|
||||
$args->list_count = 10;
|
||||
|
||||
$output = DocumentModel::getDocumentList($args, true);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue