diff options
author | friendica <info@friendica.com> | 2013-08-05 20:08:35 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-08-05 20:08:35 -0700 |
commit | c2f97f7490cd96e92432ca6c397dce2f6ab80eaa (patch) | |
tree | 72cbdda90fc9979fd8955a47a28b2895b4af5abd /include/directory.php | |
parent | 089e915be13707db129c1043d3b914333c296acc (diff) | |
download | volse-hubzilla-c2f97f7490cd96e92432ca6c397dce2f6ab80eaa.tar.gz volse-hubzilla-c2f97f7490cd96e92432ca6c397dce2f6ab80eaa.tar.bz2 volse-hubzilla-c2f97f7490cd96e92432ca6c397dce2f6ab80eaa.zip |
populate initial suggestions (ultimately we want to do this at install time as well as from the poller so that new sites have friend suggestions when they create their first channel).
Diffstat (limited to 'include/directory.php')
-rw-r--r-- | include/directory.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/directory.php b/include/directory.php index c286f5683..c0a8928c0 100644 --- a/include/directory.php +++ b/include/directory.php @@ -39,7 +39,7 @@ function directory_run($argv, $argc){ $directory = find_upstream_directory($dirmode); if($directory) { - $url = $directory['url']; + $url = $directory['url'] . '/post'; } else { $url = DIRECTORY_FALLBACK_MASTER . '/post'; |