I picked up the patch provided in

http://drupal.org/node/608650

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

svendecabooter’s picture

Status: Active » Fixed

This should be fixed during the latest updates of this module. A new release will come out soon.

Status: Fixed » Closed (fixed)

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