Closed (fixed)
Project:
Advanced Blog
Version:
6.x-1.0-beta1
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
3 Dec 2009 at 22:12 UTC
Updated:
16 May 2010 at 20:30 UTC
I picked up the patch provided in
The line
$blogger .= '<li><a href="/blog/' . $account->name . '">more...</a></li>';
should be replaced by (also adding translation option)
$blogger .= '<li><a href="/blog/' . $account->uid . '"'.t('more...').'</a></li>';
For translation it should replace also
$bcontent .= "<li>" . l('Post new blog entry','node/add/blog') . "</li>";
$bcontent .= "<li>Top bloggers </li>";
with
$bcontent .= "<li>" . l(t('Post new blog entry'),'node/add/blog') . "</li>";
$bcontent .= "<li>".t("Top bloggers")."</li>";
Comments
Comment #1
svendecabooterThis should be fixed during the latest updates of this module. A new release will come out soon.