mirror of
https://github.com/Daichimarukana/uwuzu.git
synced 2026-06-04 19:14:41 +00:00
uwuzu v1.6.5 Hapuego
This commit is contained in:
@@ -60,7 +60,6 @@ if($is_login === false){
|
||||
$role = safetext($is_login["role"]);
|
||||
$sacinfo = safetext($is_login["sacinfo"]);
|
||||
$myblocklist = safetext($is_login["blocklist"]);
|
||||
$myfollowlist = safetext($is_login["follow"]);
|
||||
$is_Admin = safetext($is_login["admin"]);
|
||||
}
|
||||
|
||||
@@ -107,11 +106,9 @@ if (!empty($pdo)) {
|
||||
$roleDataArray[$roleId] = $rerole->fetch();
|
||||
}
|
||||
|
||||
$followIds = explode(',', $userdata['follow']);
|
||||
$followCount = count($followIds)-1;
|
||||
$followCount = count(getFolloweeList($pdo, $userdata['userid']));
|
||||
|
||||
$followerIds = explode(',', $userdata['follower']);
|
||||
$followerCount = count($followerIds)-1;
|
||||
$followerCount = count(getFollowerList($pdo, $userdata['userid']));
|
||||
|
||||
$result = $pdo->prepare("SELECT ueuse FROM ueuse WHERE account = :userid ORDER BY datetime");
|
||||
$result->bindValue(':userid', $userdata["userid"]);
|
||||
|
||||
Reference in New Issue
Block a user