]> git.mxchange.org Git - friendica.git/blobdiff - mod/fsuggest.php
proc_run was replaced
[friendica.git] / mod / fsuggest.php
index fcbadcc9b7f06a5febca3ee9167608f429f37086..efaf100efcaa1bf3b9535d4343bcfcf4265b8988 100644 (file)
@@ -1,7 +1,9 @@
 <?php
 
+use Friendica\App;
+use Friendica\Core\Worker;
 
-function fsuggest_post(App &$a) {
+function fsuggest_post(App $a) {
 
        if (! local_user()) {
                return;
@@ -40,11 +42,11 @@ function fsuggest_post(App &$a) {
                                VALUES ( %d, %d, '%s','%s','%s','%s','%s','%s')",
                                intval(local_user()),
                                intval($contact_id),
-                               dbesc($r[0]['name']), 
-                               dbesc($r[0]['url']), 
-                               dbesc($r[0]['request']), 
-                               dbesc($r[0]['photo']), 
-                               dbesc($hash), 
+                               dbesc($r[0]['name']),
+                               dbesc($r[0]['url']),
+                               dbesc($r[0]['request']),
+                               dbesc($r[0]['photo']),
+                               dbesc($hash),
                                dbesc(datetime_convert())
                        );
                        $r = q("SELECT `id` FROM `fsuggest` WHERE `note` = '%s' AND `uid` = %d LIMIT 1",
@@ -58,7 +60,7 @@ function fsuggest_post(App &$a) {
                                        intval($fsuggest_id),
                                        intval(local_user())
                                );
-                               proc_run(PRIORITY_HIGH, 'include/notifier.php', 'suggest', $fsuggest_id);
+                               Worker::add(PRIORITY_HIGH, 'notifier', 'suggest', $fsuggest_id);
                        }
 
                        info( t('Friend suggestion sent.') . EOL);
@@ -71,7 +73,7 @@ function fsuggest_post(App &$a) {
 
 
 
-function fsuggest_content(App &$a) {
+function fsuggest_content(App $a) {
 
        require_once('include/acl_selectors.php');
 
@@ -101,7 +103,7 @@ function fsuggest_content(App &$a) {
 
        $o .= '<form id="fsuggest-form" action="fsuggest/' . $contact_id . '" method="post" >';
 
-       $o .= contact_selector('suggest','suggest-select', false, 
+       $o .= contact_selector('suggest','suggest-select', false,
                array('size' => 4, 'exclude' => $contact_id, 'networks' => 'DFRN_ONLY', 'single' => true));