I have pathauto module installed to ensure a fancy link to users' blogs. I have the "Advanced Blog: bloggers" block enabled on the right side as you can see on http://www.4242.hu . There, all links are okay and working perfectly.
However, when I check the advanced blog view at http://www.4242.hu/hu/advanced_blog/list , it has different links to blog posts and the even for the user's blogs as it should. Thus even the "more..." link doesn't work at all.
Comments
Comment #1
fleetcommand commentedOk, I fixed the issue this way:
In line 517, I replaced this:
$blogger .= '<li><a href="/node/' . $post->nid . '">' . $post->title . '</a></li>';
with this:
$blogger .= '<li>' . l($post->title, "node/$post->nid") . '</li>';
Then in line 519, I replaced this:
$blogger .= '<li><a href="/blog/' . $account->name . '">more...</a></li>';
with this:
$blogger .= '<li>' . l("more...", "blog/$uid") . '</li>';
Comment #2
eidolon nightComment #3
svendecabooterThis has been fixed in HEAD.