url_from_contact_guid: move network constant to arg list

This commit is contained in:
Hypolite Petovan 2016-12-20 20:52:42 -05:00
parent b631442760
commit 769b849665
1 changed files with 4 additions and 2 deletions

View File

@ -714,8 +714,10 @@ class Diaspora {
public static function url_from_contact_guid($fcontact_guid) {
logger("fcontact guid is ".$fcontact_guid, LOGGER_DEBUG);
$r = q("SELECT `url` FROM `fcontact` WHERE `guid` = '%s' AND `network` = '" . NETWORK_DIASPORA . "' AND `url` != ''",
$fcontact_guid);
$r = q("SELECT `url` FROM `fcontact` WHERE `url` != '' AND `network` = '%s' AND `guid` = '%s'",
dbesc(NETWORK_DIASPORA),
dbesc($fcontact_guid)
);
if (dbm::is_result($r)) {
return $r[0]['url'];