I respectfully request the following bug fix be included in the next update.
You can see the full post about this :: here ::
In the pm/lib/stats.fns.php file. Look around line 393 and you’ll see:
$sql = “select post_id,title,weblog
from $db_weblog
where member_id = ‘$id’
and t_stamp <= ‘$newtime’
and x_stamp >= ‘$newtime’
order by t_stamp desc “;
Change it to this:
$sql = “select post_id,title,weblog
from $db_weblog
where member_id = ‘$id’
and status = ‘open’
and t_stamp <= ‘$newtime’
and x_stamp >= ‘$newtime’
order by t_stamp desc “;
This fix is courtesy of Chris Curtis.
