]> git.mxchange.org Git - friendica.git/blobdiff - mod/fsuggest.php
Merge pull request #2094 from annando/1511-api
[friendica.git] / mod / fsuggest.php
index 29fb79cfb1394a45f2061029cd4ffa9bdbb8b770..6b1cbd7533be8ca44f6e9ce19c32609cdbf74490 100644 (file)
@@ -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 = '<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;
-}
\ No newline at end of file
+}