diff options
author | Friendika <info@friendika.com> | 2011-10-20 05:43:33 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-10-20 05:43:33 -0700 |
commit | da416e0181663b33304eadc0b1db228e6f1f5b7d (patch) | |
tree | 8ed6ad43eba36ca72effd676572e1cb3f82cc8f2 /mod | |
parent | 96c0598737a86d1c3861af2f149edf3d50edef22 (diff) | |
download | volse-hubzilla-da416e0181663b33304eadc0b1db228e6f1f5b7d.tar.gz volse-hubzilla-da416e0181663b33304eadc0b1db228e6f1f5b7d.tar.bz2 volse-hubzilla-da416e0181663b33304eadc0b1db228e6f1f5b7d.zip |
bug in diaspora_reshare
Diffstat (limited to 'mod')
-rw-r--r-- | mod/profile_photo.php | 3 | ||||
-rw-r--r-- | mod/profiles.php | 3 | ||||
-rw-r--r-- | mod/settings.php | 6 |
3 files changed, 9 insertions, 3 deletions
diff --git a/mod/profile_photo.php b/mod/profile_photo.php index 4de3aaa3e..47f0f8d8e 100644 --- a/mod/profile_photo.php +++ b/mod/profile_photo.php @@ -90,6 +90,9 @@ function profile_photo_post(&$a) { $url = $a->get_baseurl() . '/profile/' . $a->user['nickname']; if($url && strlen(get_config('system','directory_submit_url'))) proc_run('php',"include/directory.php","$url"); + + require_once('include/profile_update.php'); + profile_change(); } else notice( t('Unable to process image') . EOL); diff --git a/mod/profiles.php b/mod/profiles.php index f5f335c7e..a5096a984 100644 --- a/mod/profiles.php +++ b/mod/profiles.php @@ -210,6 +210,9 @@ function profiles_post(&$a) { $url = $_SESSION['my_url']; if($url && strlen(get_config('system','directory_submit_url'))) proc_run('php',"include/directory.php","$url"); + + require_once('include/profile_update.php'); + profile_change(); } } } diff --git a/mod/settings.php b/mod/settings.php index 84f66d263..8ed03dba5 100644 --- a/mod/settings.php +++ b/mod/settings.php @@ -296,9 +296,9 @@ function settings_post(&$a) { } -// not yet ready for prime time -// require_once('include/profile_update.php'); -// profile_change(); + + require_once('include/profile_update.php'); + profile_change(); $_SESSION['theme'] = $theme; if($email_changed && $a->config['register_policy'] == REGISTER_VERIFY) { |