]> git.mxchange.org Git - friendica.git/blobdiff - mod/fsuggest.php
Merge https://github.com/friendica/friendica into pull
[friendica.git] / mod / fsuggest.php
index 29fb79cfb1394a45f2061029cd4ffa9bdbb8b770..9ef8f4c551b146c2e366afd4601c1c8701805b7e 100644 (file)
@@ -94,20 +94,17 @@ function fsuggest_content(&$a) {
        }
        $contact = $r[0];
 
-
-
-
        $o = '<h3>' . t('Suggest Friends') . '</h3>';
 
-       $o .= sprintf( t('Suggest a friend for %s'), $contact['name']);
+       $o .= '<div id="fsuggest-desc" >' . sprintf( t('Suggest a friend for %s'), $contact['name']) . '</div>';
 
-       $o .= '<form action="fsuggest/' . $contact_id . '" method="post" >';
+       $o .= '<form id="fsuggest-form" action="fsuggest/' . $contact_id . '" method="post" >';
 
-       // 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 .= '<input type="submit" name="submit" value="' . t('Submit') . '" />';
+       $o .= '<div id="fsuggest-submit-wrapper"><input id="fsuggest-submit" type="submit" name="submit" value="' . t('Submit') . '" /></div>';
        $o .= '</form>';
 
        return $o;