View Single Post
(#8)
frommarcq frommarcq is offline
Member
frommarcq is on a distinguished road
 
Posts: 51
Join Date: Mar 2006
Location: Lille (France)
Default 06-26-2006, 11:21 AM

In fact, the problem occured only with 'member rating', not with 'listing rating'.

I think I've fixed this bug : in 'modules/member_rating/mod_user.php' please replace :
Code:
$sSQL = "SELECT id,added,person,review,score FROM ".PREFIX."rating WHERE uid=".$member." ORDER BY added DESC";
with :
Code:
$sSQL = "SELECT id,added,person,review,score FROM ".PREFIX."rating WHERE uid=".$member." AND approved='Y' ORDER BY added DESC";

I hope the code is correct...

Pascal