]> git.mxchange.org Git - friendica.git/commitdiff
Added App::get_cached_avater_image usage in profile_sidebar function for creating...
authorZvi ben Yaakov (a.k.a rdc) <coderzvi@infosoc.net>
Tue, 19 Jun 2012 19:24:31 +0000 (22:24 +0300)
committerfriendica <info@friendica.com>
Tue, 19 Jun 2012 23:05:39 +0000 (16:05 -0700)
boot.php

index ab71c7e7df950384fc66f5997e44ced0e5ea62f5..3d0d5098d15454c8322d2214ba0d258404ebe846 100644 (file)
--- a/boot.php
+++ b/boot.php
@@ -1155,9 +1155,9 @@ if(! function_exists('profile_sidebar')) {
                        'fullname' => $profile['name'],
                        'firstname' => $firstname,
                        'lastname' => $lastname,
-                       'photo300' => $a->get_baseurl() . '/photo/custom/300/' . $profile['uid'] . '.jpg',
-                       'photo100' => $a->get_baseurl() . '/photo/custom/100/' . $profile['uid'] . '.jpg',
-                       'photo50' => $a->get_baseurl() . '/photo/custom/50/'  . $profile['uid'] . '.jpg',
+                       'photo300' => $a->get_cached_avatar_image($a->get_baseurl() . '/photo/custom/300/' . $profile['uid'] . '.jpg'),
+                       'photo100' => $a->get_cached_avatar_image($a->get_baseurl() . '/photo/custom/100/' . $profile['uid'] . '.jpg'),
+                       'photo50' => $a->get_cached_avatar_image($a->get_baseurl() . '/photo/custom/50/'  . $profile['uid'] . '.jpg'),
                );
 
                if (!$block){