forked from friendica/friendica-addons
revert because of wrong description
This commit is contained in:
parent
6e2ed86758
commit
f6403049f6
|
@ -75,7 +75,6 @@ function frio_hovercard_content() {
|
||||||
'addr' => (($contact["addr"] != "") ? $contact["addr"] : $contact["url"]),
|
'addr' => (($contact["addr"] != "") ? $contact["addr"] : $contact["url"]),
|
||||||
'thumb' => proxy_url($contact["photo"], false, PROXY_SIZE_THUMB),
|
'thumb' => proxy_url($contact["photo"], false, PROXY_SIZE_THUMB),
|
||||||
'url' => ($cid ? ("redir/".$cid) : zrl($contact["url"])),
|
'url' => ($cid ? ("redir/".$cid) : zrl($contact["url"])),
|
||||||
'nurl' => $contact["nurl"], // We additionaly strore the nurl as identifier
|
|
||||||
// 'alias' => $contact["alias"],
|
// 'alias' => $contact["alias"],
|
||||||
'location' => $contact["location"],
|
'location' => $contact["location"],
|
||||||
'gender' => $contact["gender"],
|
'gender' => $contact["gender"],
|
||||||
|
@ -127,3 +126,15 @@ function get_template_content($template, $root = "") {
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
function save_this_query() {
|
||||||
|
$contacts = q("SELECT * FROM `gcontact`
|
||||||
|
WHERE ((NOT `gcontact`.`hide` AND `gcontact`.`network` IN ('%s', '%s', '%s') AND
|
||||||
|
((`gcontact`.`last_contact` >= `gcontact`.`last_failure`) OR (`gcontact`.`updated` >= `gcontact`.`last_failure`)))) AND
|
||||||
|
(`gcontact`.`addr` = '%s' OR `gcontact`.`nurl` = '%s')
|
||||||
|
LIMIT 1",
|
||||||
|
dbesc(NETWORK_DFRN), dbesc($ostatus), dbesc($diaspora),
|
||||||
|
dbesc(escape_tags($url))
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue