fix post index receiving

This commit is contained in:
ghost 2022-01-14 12:14:06 +02:00
parent 0b3d0d65bc
commit 22180cb4b3

View File

@ -11,9 +11,8 @@ if (isset($_SESSION['userName'])) {
$postK = 1;
if ($userPosts = $_twister->getPosts([$_SESSION['userName']], 1)) {
if (isset($userPosts[0]['k'])) {
$postK = Filter::int($userPosts[0]['k']) + 1;
if (isset($userPosts[0]['userpost']['k'])) {
$postK = Filter::int($userPosts[0]['userpost']['k']) + 1;
}
}