diff options
author | friendica <info@friendica.com> | 2012-06-25 14:17:23 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-06-25 14:17:23 -0700 |
commit | d0e14809fd7cd9783b84915c4fe94ee08d4a72aa (patch) | |
tree | 0cb261397c4f3c17cf3eb430bd8c5442397b064f | |
parent | 7ea5917bf794c431fe304fa25380f19a6927cf63 (diff) | |
parent | 51ef8fb7ff77323382fa750827aa25f4652a1891 (diff) | |
download | volse-hubzilla-d0e14809fd7cd9783b84915c4fe94ee08d4a72aa.tar.gz volse-hubzilla-d0e14809fd7cd9783b84915c4fe94ee08d4a72aa.tar.bz2 volse-hubzilla-d0e14809fd7cd9783b84915c4fe94ee08d4a72aa.zip |
Merge pull request #358 from rdc/master
Added App::get_cached_avatar_image usage for displaying "Last users" avatar thumbs in right sidebar
-rwxr-xr-x | view/theme/diabook/theme.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/view/theme/diabook/theme.php b/view/theme/diabook/theme.php index 83079782e..53048df6c 100755 --- a/view/theme/diabook/theme.php +++ b/view/theme/diabook/theme.php @@ -528,7 +528,7 @@ if ($color=="dark") $color_path = "/diabook-dark/"; $entry = replace_macros($tpl,array( '$id' => $rr['id'], '$profile-link' => $profile_link, - '$photo' => $rr[$photo], + '$photo' => $a->get_cached_avatar_image($rr[$photo]), '$alt-text' => $rr['name'], )); $aside['$lastusers_items'][] = $entry; |