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

fleetcommand’s picture

Ok, 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>';

eidolon night’s picture

Status: Active » Needs review
svendecabooter’s picture

Assigned: Unassigned » svendecabooter
Status: Needs review » Fixed

This has been fixed in HEAD.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.