X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Ffsuggest.php;h=6b1cbd7533be8ca44f6e9ce19c32609cdbf74490;hb=05b2836d660c043d00b204c05463e720bb72f62a;hp=29fb79cfb1394a45f2061029cd4ffa9bdbb8b770;hpb=c410c9013c062a9a4fce1f887572a1b1c951afbe;p=friendica.git diff --git a/mod/fsuggest.php b/mod/fsuggest.php index 29fb79cfb1..6b1cbd7533 100644 --- a/mod/fsuggest.php +++ b/mod/fsuggest.php @@ -52,7 +52,7 @@ function fsuggest_post(&$a) { ); if(count($r)) { $fsuggest_id = $r[0]['id']; - q("UPDATE `fsuggest` SET `note` = '%s' WHERE `id` = %d AND `uid` = %d LIMIT 1", + q("UPDATE `fsuggest` SET `note` = '%s' WHERE `id` = %d AND `uid` = %d", dbesc($note), intval($fsuggest_id), intval(local_user()) @@ -94,21 +94,18 @@ function fsuggest_content(&$a) { } $contact = $r[0]; - - - $o = '

' . t('Suggest Friends') . '

'; - $o .= sprintf( t('Suggest a friend for %s'), $contact['name']); + $o .= '
' . sprintf( t('Suggest a friend for %s'), $contact['name']) . '
'; - $o .= '
'; + $o .= ''; - // TODO: selector should have an option to ignore the recipient - $o .= contact_select('suggest','suggest-select', $preselect, 4, true); + $o .= contact_selector('suggest','suggest-select', false, + array('size' => 4, 'exclude' => $contact_id, 'networks' => 'DFRN_ONLY', 'single' => true)); - $o .= ''; + $o .= '
'; $o .= '
'; return $o; -} \ No newline at end of file +}