Quote:
Originally Posted by Total666
Any ideas what would cause this ??

|
Just figured out what it was and fixed it. It's an issue with the foreach loops that pulls the usergroup and location data. It doesn't clear out the temp array between loops, so it repeats the information from the preceding loops.
The database appears to be fine, although it was causing odd looping issues for me which I can't explain, but either way it works just fine for me now!
To fix it, you'll need to edit admincp\force_read_thread.php.
FIND:
Code:
print_cells_row($cell);
AFTER add:
Code:
unset($usergroups);
unset($forums);