mirror of
https://github.com/friendica/friendica
synced 2024-11-10 03:42:53 +00:00
more to resolve photo inconsitency
This commit is contained in:
parent
1eb68ca6f9
commit
deaff556ff
2 changed files with 11 additions and 2 deletions
|
@ -74,11 +74,14 @@ function item_display(&$a, $item,$template,$comment) {
|
||||||
if(local_user() && ($item['contact-uid'] == $_SESSION['uid']) && (strlen($item['dfrn-id'])) && (! $item['self'] ))
|
if(local_user() && ($item['contact-uid'] == $_SESSION['uid']) && (strlen($item['dfrn-id'])) && (! $item['self'] ))
|
||||||
$profile_url = $a->get_baseurl() . '/redir/' . $item['cid'] ;
|
$profile_url = $a->get_baseurl() . '/redir/' . $item['cid'] ;
|
||||||
|
|
||||||
|
$photo = (($item['self']) ? $a->profile['photo'] : $item['photo']);
|
||||||
|
$thumb = (($item['self']) ? $a->profile['thumb'] : $item['thumb']);
|
||||||
|
|
||||||
$o .= replace_macros($template,array(
|
$o .= replace_macros($template,array(
|
||||||
'$id' => $item['item_id'],
|
'$id' => $item['item_id'],
|
||||||
'$profile_url' => $profile_url,
|
'$profile_url' => $profile_url,
|
||||||
'$name' => $item['name'],
|
'$name' => $item['name'],
|
||||||
'$thumb' => $item['thumb'],
|
'$thumb' => $thumb,
|
||||||
'$body' => bbcode($item['body']),
|
'$body' => bbcode($item['body']),
|
||||||
'$ago' => relative_date($item['created']),
|
'$ago' => relative_date($item['created']),
|
||||||
'$comment' => $comment
|
'$comment' => $comment
|
||||||
|
|
8
wip/todo
8
wip/todo
|
@ -1,7 +1,11 @@
|
||||||
|
|
||||||
profile photo to self contact page? - resolve profile photo inconsistency
|
profile photo to self contact page? - resolve profile photo inconsistency
|
||||||
pre-load profile photos and use in conversations instead of contact photos
|
pre-load profile photos and use in conversations instead of contact photos
|
||||||
ensure correct photo is pushed with notify/poll
|
(done for profile owner)
|
||||||
|
|
||||||
|
ensure correct photo is pushed with notify/poll and used in wall/wall comments/posts
|
||||||
|
use photo hash to notify of changes?
|
||||||
|
|
||||||
|
|
||||||
contact editor
|
contact editor
|
||||||
|
|
||||||
|
@ -15,6 +19,8 @@ publish to directory
|
||||||
|
|
||||||
directory page
|
directory page
|
||||||
|
|
||||||
|
publish to external directory
|
||||||
|
|
||||||
anonymous nav links
|
anonymous nav links
|
||||||
|
|
||||||
groups
|
groups
|
||||||
|
|
Loading…
Reference in a new issue