Added ability to view "Watching topics" of other people's (Admins) (#1336)

* Added ability to view "Watching topics" of other people's (For admins only)

* Update CHANGELOG.md
This commit is contained in:
Roman Kelesidis 2024-01-24 01:03:38 +07:00 committed by GitHub
commit f154d706f8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 15 additions and 4 deletions

View file

@ -755,7 +755,7 @@ function get_username($user_id)
return $usernames;
}
$row = DB()->fetch_row("SELECT username FROM " . BB_USERS . " WHERE user_id = $user_id LIMIT 1");
$row = DB()->fetch_row("SELECT username FROM " . BB_USERS . " WHERE user_id = '" . DB()->escape($user_id) . "' LIMIT 1");
return $row['username'];
}