Changeset 2675 for branches/release-41/lib/MT/Author.pm
- Timestamp:
- 07/02/08 02:54:27 (17 months ago)
- Files:
-
- 1 modified
-
branches/release-41/lib/MT/Author.pm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/release-41/lib/MT/Author.pm
r2426 r2675 746 746 my ($thumb_url, $w, $h) = $author->userpic_url(@_) or return; 747 747 return unless $thumb_url; 748 sprintf q{<img src="%s " width="%d" height="%d" alt="" />},749 MT::Util::encode_html($thumb_url), $w, $h;748 sprintf q{<img src="%s?%d" width="%d" height="%d" alt="" />}, 749 MT::Util::encode_html($thumb_url), $author->userpic->id, $w, $h; 750 750 } 751 751
