diff options
author | redmatrix <redmatrix@redmatrix.me> | 2015-05-24 15:50:05 -0700 |
---|---|---|
committer | redmatrix <redmatrix@redmatrix.me> | 2015-05-24 15:50:05 -0700 |
commit | 851f2f64df284d4ec410cdf7511b365db9fc5e9b (patch) | |
tree | 81484c475285226961b51240dd071197b7021791 /include/dir_fns.php | |
parent | 5795e2a58bb4a0702a3d318ec6ac05681d6e5864 (diff) | |
parent | 13546167877322afa274a2540656f525e55d3b48 (diff) | |
download | volse-hubzilla-851f2f64df284d4ec410cdf7511b365db9fc5e9b.tar.gz volse-hubzilla-851f2f64df284d4ec410cdf7511b365db9fc5e9b.tar.bz2 volse-hubzilla-851f2f64df284d4ec410cdf7511b365db9fc5e9b.zip |
Merge branch 'master' of https://github.com/redmatrix/redmatrix
Conflicts:
index.php
mod/setup.php
Diffstat (limited to 'include/dir_fns.php')
-rw-r--r-- | include/dir_fns.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/dir_fns.php b/include/dir_fns.php index eaa2db84b..902a0c1a3 100644 --- a/include/dir_fns.php +++ b/include/dir_fns.php @@ -425,10 +425,13 @@ function local_dir_update($uid, $force) { ); } + $arr = array('channel_id' => $uid, 'hash' => $hash, 'profile' => $profile); + call_hooks('local_dir_update', $arr); + $address = $p[0]['channel_address'] . '@' . get_app()->get_hostname(); if (perm_is_allowed($uid, '', 'view_profile')) { - import_directory_profile($hash, $profile, $address, 0); + import_directory_profile($hash, $arr['profile'], $address, 0); } else { // they may have made it private $r = q("delete from xprof where xprof_hash = '%s'", |