]> git.mxchange.org Git - friendica.git/blobdiff - mod/settings.php
Merge branch 'master' into develop
[friendica.git] / mod / settings.php
index 682bee3756e647c6521c732c725f7103005de65e..e2d3f4d367bf94ebdea47c62c85d3df3fb5d8f22 100644 (file)
@@ -352,7 +352,7 @@ function settings_post(&$a) {
        check_form_security_token_redirectOnErr('/settings', 'settings');
 
        if (x($_POST,'resend_relocate')) {
-               proc_run('php', 'include/notifier.php', 'relocate', local_user());
+               proc_run(PRIORITY_HIGH, 'include/notifier.php', 'relocate', local_user());
                info(t("Relocate message has been send to your contacts"));
                goaway('settings');
        }
@@ -614,24 +614,15 @@ function settings_post(&$a) {
                // Update global directory in background
                $url = $_SESSION['my_url'];
                if($url && strlen(get_config('system','directory')))
-                       proc_run('php',"include/directory.php","$url");
-
-       }
-
-       $r = q("SELECT `url` FROM `contact` WHERE `self` AND `uid` = %d", intval(local_user()));
-       if ($r) {
-               $nickname = $a->user['nickname'];
-               $addr = $nickname.'@'.str_replace(array("http://", "https://"), "", App::get_baseurl());
-               $gcontact = array("name" => $username, "generation" => 1, "hide" => ($hidewall OR !$net_publish),
-                               "nick" => $nickname, "addr" => $addr,
-                               "connect" => $addr, "server_url" => App::get_baseurl(),
-                               "network" => NETWORK_DFRN, "url" => $r[0]["url"], "updated" => datetime_convert());
-               update_gcontact($gcontact);
+                       proc_run(PRIORITY_LOW, "include/directory.php", $url);
        }
 
        require_once('include/profile_update.php');
        profile_change();
 
+       // Update the global contact for the user
+       update_gcontact_for_user(local_user());
+
        //$_SESSION['theme'] = $theme;
        if($email_changed && $a->config['register_policy'] == REGISTER_VERIFY) {
 
@@ -998,6 +989,9 @@ function settings_content(&$a) {
                        '$infinite_scroll'      => array('infinite_scroll', t("Infinite scroll"), $infinite_scroll, ''),
                        '$no_auto_update'       => array('no_auto_update', t("Automatic updates only at the top of the network page"), $no_auto_update, 'When disabled, the network page is updated all the time, which could be confusing while reading.'),
 
+                       '$d_tset' => t('General Theme Settings'),
+                       '$d_ctset' => t('Custom Theme Settings'),
+                       '$d_cset' => t('Content Settings'),
                        'stitle' => t('Theme settings'),
                        '$theme_config' => $theme_config,
                ));