Show RedMatrix and use the proxy for the profile pictures

This commit is contained in:
Michael Vogel 2015-10-04 22:24:58 +02:00
parent 79391bbb62
commit 8a2d1fe301
2 changed files with 5 additions and 5 deletions

View File

@ -72,11 +72,11 @@ function follow_content(&$a) {
if ($ret["addr"] != "") if ($ret["addr"] != "")
$header .= " <".$ret["addr"].">"; $header .= " <".$ret["addr"].">";
$header .= " (".network_to_name($ret['network']).")"; $header .= " (".network_to_name($ret['network'], $ret['url']).")";
$o = replace_macros($tpl,array( $o = replace_macros($tpl,array(
'$header' => htmlentities($header), '$header' => htmlentities($header),
'$photo' => $ret["photo"], '$photo' => proxy_url($ret["photo"]),
'$desc' => "", '$desc' => "",
'$pls_answer' => t('Please answer the following:'), '$pls_answer' => t('Please answer the following:'),
'$does_know_you' => array('knowyou', sprintf(t('Does %s know you?'),$ret["name"]), false, '', array(t('No'),t('Yes'))), '$does_know_you' => array('knowyou', sprintf(t('Does %s know you?'),$ret["name"]), false, '', array(t('No'),t('Yes'))),

View File

@ -166,7 +166,7 @@ function notifications_content(&$a) {
'$intro_id' => $rr['intro_id'], '$intro_id' => $rr['intro_id'],
'$madeby' => sprintf( t('suggested by %s'),$rr['name']), '$madeby' => sprintf( t('suggested by %s'),$rr['name']),
'$contact_id' => $rr['contact-id'], '$contact_id' => $rr['contact-id'],
'$photo' => ((x($rr,'fphoto')) ? $rr['fphoto'] : "images/person-175.jpg"), '$photo' => ((x($rr,'fphoto')) ? proxy_url($rr['fphoto']) : "images/person-175.jpg"),
'$fullname' => $rr['fname'], '$fullname' => $rr['fname'],
'$url' => zrl($rr['furl']), '$url' => zrl($rr['furl']),
'$hidden' => array('hidden', t('Hide this contact from others'), ($rr['hidden'] == 1), ''), '$hidden' => array('hidden', t('Hide this contact from others'), ($rr['hidden'] == 1), ''),
@ -220,7 +220,7 @@ function notifications_content(&$a) {
if ($ret["addr"] != "") if ($ret["addr"] != "")
$header .= " <".$ret["addr"].">"; $header .= " <".$ret["addr"].">";
$header .= " (".network_to_name($rr['gnetwork']).")"; $header .= " (".network_to_name($rr['gnetwork'], $rr['url']).")";
$notif_content .= replace_macros($tpl, array( $notif_content .= replace_macros($tpl, array(
'$header' => htmlentities($header), '$header' => htmlentities($header),
@ -368,7 +368,7 @@ function notifications_content(&$a) {
foreach ($r as $it) { foreach ($r as $it) {
$notif_content .= replace_macros($not_tpl,array( $notif_content .= replace_macros($not_tpl,array(
'$item_link' => $a->get_baseurl(true).'/notify/view/'. $it['id'], '$item_link' => $a->get_baseurl(true).'/notify/view/'. $it['id'],
'$item_image' => $it['photo'], '$item_image' => proxy_url($it['photo']),
'$item_text' => strip_tags(bbcode($it['msg'])), '$item_text' => strip_tags(bbcode($it['msg'])),
'$item_when' => relative_date($it['date']) '$item_when' => relative_date($it['date'])
)); ));