]> git.mxchange.org Git - friendica.git/blobdiff - mod/fsuggest.php
More usage of dbm::is_result($r) instead of count($r):
[friendica.git] / mod / fsuggest.php
index dc95fb8e16bd67f4ff1559a036068aa824757bbd..84241e49ecaa45312b80aaff9f4d63a0d873307a 100644 (file)
@@ -16,7 +16,7 @@ function fsuggest_post(&$a) {
                intval($contact_id),
                intval(local_user())
        );
-       if(! count($r)) {
+       if(! dbm::is_result($r)) {
                notice( t('Contact not found.') . EOL);
                return;
        }
@@ -33,7 +33,7 @@ function fsuggest_post(&$a) {
                        intval($new_contact),
                        intval(local_user())
                );
-               if(count($r)) {
+               if(dbm::is_result($r)) {
 
                        $x = q("INSERT INTO `fsuggest` ( `uid`,`cid`,`name`,`url`,`request`,`photo`,`note`,`created`)
                                VALUES ( %d, %d, '%s','%s','%s','%s','%s','%s')",
@@ -50,14 +50,14 @@ function fsuggest_post(&$a) {
                                dbesc($hash),
                                intval(local_user())
                        );
-                       if(count($r)) {
+                       if(dbm::is_result($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())
                                );
-                               proc_run('php', 'include/notifier.php', 'suggest' , $fsuggest_id);
+                               proc_run(PRIORITY_HIGH, 'include/notifier.php', 'suggest', $fsuggest_id);
                        }
 
                        info( t('Friend suggestion sent.') . EOL);
@@ -88,27 +88,24 @@ function fsuggest_content(&$a) {
                intval($contact_id),
                intval(local_user())
        );
-       if(! count($r)) {
+       if(! dbm::is_result($r)) {
                notice( t('Contact not found.') . EOL);
                return;
        }
        $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" >';
 
        $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
+}