diff options
author | friendica <info@friendica.com> | 2013-09-08 21:12:23 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-09-08 21:12:23 -0700 |
commit | 2c90a73695df8435557895eafa5d77bc0c6b9839 (patch) | |
tree | e9fc24b890ed9c99d751c0cdeb9e3d3fc2f7466c | |
parent | a09829a1ee62ec33904348979c5d5fbc6eb1bd6c (diff) | |
download | volse-hubzilla-2c90a73695df8435557895eafa5d77bc0c6b9839.tar.gz volse-hubzilla-2c90a73695df8435557895eafa5d77bc0c6b9839.tar.bz2 volse-hubzilla-2c90a73695df8435557895eafa5d77bc0c6b9839.zip |
change from refresh_all to a directory update - which does a refresh_all and also updates the directory.
-rw-r--r-- | mod/import.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mod/import.php b/mod/import.php index a63ccb875..e2e54c0cd 100644 --- a/mod/import.php +++ b/mod/import.php @@ -347,7 +347,9 @@ function import_post(&$a) { } - proc_run('php', 'include/notifier.php', 'refresh_all', $channel['channel_id']); + // This will indirectly perform a refresh_all *and* update the directory + + proc_run('php', 'include/directory.php', $channel['channel_id']); // send out refresh requests |