1
0
mirror of https://github.com/Daichimarukana/uwuzu.git synced 2026-06-04 19:14:41 +00:00

uwuzu v1.4.11 Funium

This commit is contained in:
Daichimarukana
2024-12-29 17:21:14 +09:00
parent b6069366d1
commit 79328e826c
49 changed files with 648 additions and 717 deletions
+2 -2
View File
@@ -222,7 +222,7 @@ if (!empty($pdo)) {
$follow = $userdata['follow']; // コンマで区切られたユーザーIDを含む変数
// コンマで区切って配列に分割し、要素数を数える
$followIds = explode(',', $follow);
$followIds = array_reverse(explode(',', $follow));
$followCount = count($followIds) - 1;
$follow_on_me = array_search($userid, $followIds);
@@ -237,7 +237,7 @@ if (!empty($pdo)) {
$follower = $userdata['follower']; // コンマで区切られたユーザーIDを含む変数
// コンマで区切って配列に分割し、要素数を数える
$followerIds = explode(',', $follower);
$followerIds = array_reverse(explode(',', $follower));
$followerCount = count($followerIds) - 1;
$profileText = safetext($userData['profile']);