Is possible to change the user image in the microblog page?

I think that in future versione the user can change his image.

Regards.

P.s. Good Work!

Comments

jeckman’s picture

Assigned: Unassigned » jeckman

If the user has a user profile image it should be used - otherwise the default drupalicon is used - set at line 362 of microblog.module:

  if ($node->picture) {
    $img = '<img src="/'. $node->picture .'" width="40" height="40" hspace="2" vspace="2" alt="'. $node->name .'" title="'. $node->name .'" />';
  }
  else {
    $img = '<img src="/themes/bluemarine/logo.png" width="40" height="40" hspace="2" vspace="2" alt="'. $node->name .'" title="'. $node->name .'" />';   
  }

Leaving this open as a feature request

jeckman’s picture

Status: Active » Closed (works as designed)