diff options
author | Zvi ben Yaakov (a.k.a rdc) <coderzvi@infosoc.net> | 2012-06-25 14:01:16 +0300 |
---|---|---|
committer | Zvi ben Yaakov (a.k.a rdc) <coderzvi@infosoc.net> | 2012-06-25 14:01:16 +0300 |
commit | 51ef8fb7ff77323382fa750827aa25f4652a1891 (patch) | |
tree | 0cb261397c4f3c17cf3eb430bd8c5442397b064f /view/theme | |
parent | 94f895e98df73efe32a7c986a4b7844b0ab8fc01 (diff) | |
download | volse-hubzilla-51ef8fb7ff77323382fa750827aa25f4652a1891.tar.gz volse-hubzilla-51ef8fb7ff77323382fa750827aa25f4652a1891.tar.bz2 volse-hubzilla-51ef8fb7ff77323382fa750827aa25f4652a1891.zip |
Added App::get_cached_avatar_image usage for displaying "Last users"
avatar thumbs in right sidebar
Diffstat (limited to 'view/theme')
-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; |