aboutsummaryrefslogtreecommitdiffstats
path: root/mod/settings.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-06-26 17:31:02 -0700
committerfriendica <info@friendica.com>2013-06-26 17:31:02 -0700
commitb9466941e77eea806539ea56b6b625d354968f4c (patch)
treef5f5c8eac6991609771ebd82941325b8b479968f /mod/settings.php
parent156cf592eeeaf1ef2fe446655b1f28debab7814c (diff)
downloadvolse-hubzilla-b9466941e77eea806539ea56b6b625d354968f4c.tar.gz
volse-hubzilla-b9466941e77eea806539ea56b6b625d354968f4c.tar.bz2
volse-hubzilla-b9466941e77eea806539ea56b6b625d354968f4c.zip
more work on channel sync
Diffstat (limited to 'mod/settings.php')
-rw-r--r--mod/settings.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/mod/settings.php b/mod/settings.php
index 788514eca..e830d7070 100644
--- a/mod/settings.php
+++ b/mod/settings.php
@@ -177,6 +177,7 @@ function settings_post(&$a) {
check_form_security_token_redirectOnErr('/settings/featured', 'settings_featured');
call_hooks('feature_settings_post', $_POST);
+ build_sync_packet();
return;
}
@@ -189,6 +190,7 @@ function settings_post(&$a) {
set_pconfig(local_user(),'feature',substr($k,8),((intval($v)) ? 1 : 0));
}
}
+ build_sync_packet();
return;
}
@@ -232,6 +234,7 @@ function settings_post(&$a) {
);
call_hooks('display_settings_post', $_POST);
+ build_sync_packet();
goaway($a->get_baseurl(true) . '/settings/display' );
return; // NOTREACHED
}
@@ -545,11 +548,12 @@ function settings_post(&$a) {
dbesc($username),
intval($channel['channel_id'])
);
- // we really need to send out notifications to all our friends
}
proc_run('php','include/directory.php',local_user());
+ build_sync_packet();
+
//$_SESSION['theme'] = $theme;
if($email_changed && $a->config['system']['register_policy'] == REGISTER_VERIFY) {