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:
+2
-2
@@ -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']);
|
||||
|
||||
Reference in New Issue
Block a user