diff options
author | Freya Murphy <freya@freyacat.org> | 2024-04-03 11:25:57 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2024-04-03 11:25:57 -0400 |
commit | 740df2706934231a91c5e2d5061198ea962c357c (patch) | |
tree | b3de8027238850d43c6841f834a88e75ba90ce75 /src/web/_views/template/posts.php | |
parent | finish profile directory (mostly) (diff) | |
download | xssbook2-740df2706934231a91c5e2d5061198ea962c357c.tar.gz xssbook2-740df2706934231a91c5e2d5061198ea962c357c.tar.bz2 xssbook2-740df2706934231a91c5e2d5061198ea962c357c.zip |
profile page
Diffstat (limited to '')
-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 ) ); } |