aboutsummaryrefslogtreecommitdiffstats
path: root/mod
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-08-05 20:08:35 -0700
committerfriendica <info@friendica.com>2013-08-05 20:08:35 -0700
commitc2f97f7490cd96e92432ca6c397dce2f6ab80eaa (patch)
tree72cbdda90fc9979fd8955a47a28b2895b4af5abd /mod
parent089e915be13707db129c1043d3b914333c296acc (diff)
downloadvolse-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 'mod')
-rw-r--r--mod/acl.php2
-rw-r--r--mod/directory.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/mod/acl.php b/mod/acl.php
index 48bc1f5fd..143b8098e 100644
--- a/mod/acl.php
+++ b/mod/acl.php
@@ -258,7 +258,7 @@ function navbar_complete(&$a) {
$directory = find_upstream_directory($dirmode);
if($directory) {
- $url = $directory['url'];
+ $url = $directory['url'] . '/dirsearch';
}
else {
$url = DIRECTORY_FALLBACK_MASTER . '/dirsearch';
diff --git a/mod/directory.php b/mod/directory.php
index 1b7bc3e4f..b7cdaffe7 100644
--- a/mod/directory.php
+++ b/mod/directory.php
@@ -45,7 +45,7 @@ function directory_content(&$a) {
$directory = find_upstream_directory($dirmode);
if($directory) {
- $url = $directory['url'];
+ $url = $directory['url'] . '/dirsearch';
}
else {
$url = DIRECTORY_FALLBACK_MASTER . '/dirsearch';