sforkowany z mirror/friendica
Merge branch 'fabrixxm-iconpopup'
commit
4922fddff9
4
boot.php
4
boot.php
|
@ -2694,19 +2694,23 @@ function item_photo_menu($item){
|
|||
$status_link = $redirect_url."?url=status";
|
||||
$profile_link = $redirect_url."?url=profile";
|
||||
$photos_link = $redirect_url."?url=photos";
|
||||
if (local_user()){
|
||||
$pm_url = $a->get_baseurl() . '/message/new/' . $item['cid'];
|
||||
$contact_url = $item['self']?"":$a->get_baseurl() . '/contacts/' . $item['cid'];
|
||||
}
|
||||
}
|
||||
elseif(isset($a->authors[$item['author-link']])) {
|
||||
$redirect_url = $a->get_baseurl() . '/redir/' . $a->authors[$item['author-link']]['id'];
|
||||
$status_link = $redirect_url."?url=status";
|
||||
$profile_link = $redirect_url."?url=profile";
|
||||
$photos_link = $redirect_url."?url=photos";
|
||||
|
||||
if (local_user()){
|
||||
if ($a->authors[$item['author-link']]['network']==='dfrn'){
|
||||
$pm_url = $a->get_baseurl() . '/message/new/' . $a->authors[$item['author-link']]['id'];
|
||||
}
|
||||
$contact_url = $item['self']?"":$a->get_baseurl() . '/contacts/' . $a->authors[$item['author-link']]['id'] ;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
|
Ładowanie…
Reference in New Issue