bitg: This is how to fix it.
Find:
// a user's individual details
if ($action == "userdetail") {
And right below it, add:
// get the user from the URL string
$user = $_GET[user];
And change the query to read:
SELECT * FROM arcadescores WHERE userid=$user AND valid=1 ORDER BY endtime DESC
Give that a shot. I fixed this for Beta 2.1 but I don't remember if that was the line or not. Good luck.
|