Merge pull request #488 from MrPetovan/task/fix-scrutinizer-issues

Remove App::get_cached_avatar_image method
This commit is contained in:
Michael Vogel 2018-01-17 07:05:14 +01:00 committed by GitHub
commit 38db18b624
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -102,7 +102,7 @@ function communityhome_home(&$a, &$o){
$entry = replace_macros($tpl,[
'$id' => $rr['id'],
'$profile_link' => $profile_link,
'$photo' => $a->get_cached_avatar_image($rr[$photo]),
'$photo' => $rr[$photo],
'$alt_text' => $rr['name'],
]);
$aside['$lastusers_items'][] = $entry;

View File

@ -171,7 +171,7 @@ function forumdirectory_content(&$a) {
$entry = replace_macros($tpl,[
'$id' => $rr['id'],
'$profile_link' => $profile_link,
'$photo' => $a->get_cached_avatar_image($rr[$photo]),
'$photo' => $rr[$photo],
'$alt_text' => $rr['name'],
'$name' => $rr['name'],
'$details' => $pdesc . $details,