]> git.mxchange.org Git - friendica.git/blobdiff - mod/settings.php
proc_run was replaced
[friendica.git] / mod / settings.php
index e8d24f43de51941fd4312acdea1a04a209ea6c13..b4d8d338f9af0bb8202c49b93ac2e5dc052bbcd0 100644 (file)
@@ -2,6 +2,7 @@
 
 use Friendica\App;
 use Friendica\Core\System;
+use Friendica\Core\Worker;
 
 require_once('include/group.php');
 require_once('include/socgraph.php');
@@ -355,7 +356,7 @@ function settings_post(App $a) {
        check_form_security_token_redirectOnErr('/settings', 'settings');
 
        if (x($_POST,'resend_relocate')) {
-               proc_run(PRIORITY_HIGH, 'include/notifier.php', 'relocate', local_user());
+               Worker::add(PRIORITY_HIGH, 'notifier', 'relocate', local_user());
                info(t("Relocate message has been send to your contacts"));
                goaway('settings');
        }
@@ -629,11 +630,11 @@ function settings_post(App $a) {
                // Update global directory in background
                $url = $_SESSION['my_url'];
                if ($url && strlen(get_config('system','directory'))) {
-                       proc_run(PRIORITY_LOW, "include/directory.php", $url);
+                       Worker::add(PRIORITY_LOW, "directory", $url);
                }
        }
 
-       proc_run(PRIORITY_LOW, 'include/profile_update.php', local_user());
+       Worker::add(PRIORITY_LOW, 'profile_update', local_user());
 
        // Update the global contact for the user
        update_gcontact_for_user(local_user());