diff options
Diffstat (limited to 'src/web/_views/template/posts.php')
-rw-r--r-- | src/web/_views/template/posts.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/web/_views/template/posts.php b/src/web/_views/template/posts.php index 5e9156c..5fec698 100644 --- a/src/web/_views/template/posts.php +++ b/src/web/_views/template/posts.php @@ -6,16 +6,18 @@ $page_size = $pdata['page_size']; $total = $pdata['total']; $max = $pdata['max']; + $filterUid = $pdata['filter_uid']; if ($loaded >= $page_size && $page_size < $total) { ilang('action_load_posts', id: 'action-load-posts', - class: 'btn btn-line btn-wide mb', + class: 'btn btn-line btn-wide mb mt', attrs: array( 'loaded' => $loaded, 'pageSize' => $page_size, 'postCount' => $total, 'postMax' => $max, + 'userId' => $filterUid ) ); } |