X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=include%2Fcontact_selectors.php;h=48f2fb005ee542b1e8d172043ed9ec7fed886f3f;hb=86d3adaa5084639a1221fc74ac44d5508add25f4;hp=f1f3b07c9130924c4ba714d7f5667720b00068b1;hpb=ed3aa9fa73d80aa2b477525dc83764c25f0a7fdd;p=friendica.git diff --git a/include/contact_selectors.php b/include/contact_selectors.php index f1f3b07c91..48f2fb005e 100644 --- a/include/contact_selectors.php +++ b/include/contact_selectors.php @@ -7,14 +7,14 @@ function contact_profile_assign($current,$foreign_net) { $disabled = (($foreign_net) ? ' disabled="true" ' : ''); - $o .= "\r\n"; - $r = q("SELECT `id`, `profile-name` FROM `profile` WHERE `uid` = %d", + $r = q("SELECT `id`, `profile-name`, `is-default` FROM `profile` WHERE `uid` = %d", intval($_SESSION['uid'])); if (dbm::is_result($r)) { foreach ($r as $rr) { - $selected = (($rr['id'] == $current) ? " selected=\"selected\" " : ""); + $selected = (($rr['id'] == $current || ($current == 0 && $rr['is-default'] == 1)) ? " selected=\"selected\" " : ""); $o .= "\r\n"; } } @@ -37,7 +37,7 @@ function contact_reputation($current) { 5 => t('Reputable, has my trust') ); - foreach($rep as $k => $v) { + foreach ($rep as $k => $v) { $selected = (($k == $current) ? " selected=\"selected\" " : ""); $o .= "\r\n"; } @@ -61,7 +61,7 @@ function contact_poll_interval($current, $disabled = false) { 5 => t('Monthly') ); - foreach($rep as $k => $v) { + foreach ($rep as $k => $v) { $selected = (($k == $current) ? " selected=\"selected\" " : ""); $o .= "\r\n"; } @@ -100,13 +100,13 @@ function network_to_name($s, $profile = "") { $networkname = str_replace($search, $replace, $s); - if ((in_array($s, array(NETWORK_DIASPORA, NETWORK_OSTATUS))) AND ($profile != "")) { - $r = q("SELECT `gserver`.`platform` FROM `gcontact` + if ((in_array($s, array(NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS))) && ($profile != "")) { + $r = dba::fetch_first("SELECT `gserver`.`platform` FROM `gcontact` INNER JOIN `gserver` ON `gserver`.`nurl` = `gcontact`.`server_url` - WHERE `gcontact`.`nurl` = '%s' AND `platform` != ''", - dbesc(normalise_link($profile))); + WHERE `gcontact`.`nurl` = ? AND `platform` != ''", normalise_link($profile)); + if (dbm::is_result($r)) { - $networkname = $r[0]["platform"]; + $networkname = $r['platform']; } }