]> git.mxchange.org Git - friendica.git/blobdiff - mod/fsuggest.php
Revert some more unwarranted formatting
[friendica.git] / mod / fsuggest.php
old mode 100755 (executable)
new mode 100644 (file)
index 9ef8f4c..ad407d5
@@ -52,12 +52,12 @@ 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())
                                );
-                               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);
@@ -108,4 +108,4 @@ function fsuggest_content(&$a) {
        $o .= '</form>';
 
        return $o;
-}
\ No newline at end of file
+}