on mod.favorites.php under function rank();
if ( $TMPL->fetch_param('category') OR ($cat_id != '' AND $dynamic) )
{
$sql .= " LEFT JOIN exp_category_posts ON f.entry_id = exp_category_posts.entry_id LEFT JOIN exp_categories ON exp_category_posts.cat_id = exp_categories.cat_id";
}
the
f.entry_id
should be
t.entry_id
otherwise it will give you a msyql error.
