Posted by guru81 on April 21, 2009 at 7:24am
Jump to:
| Project: | Microblog |
| Version: | 6.x-1.0 |
| Component: | User interface |
| Category: | feature request |
| Priority: | normal |
| Assigned: | jeckman |
| Status: | closed (works as designed) |
Issue Summary
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
#1
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
#2