diff options
author | friendica <info@friendica.com> | 2013-10-30 01:58:45 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-10-30 01:58:45 -0700 |
commit | 2035a5dd763f7524cdc1a678b0e8dbca94f270f5 (patch) | |
tree | 5109b71ad33146e6f99ef79aaca3a9c7844b3cd6 /mod/dirsearch.php | |
parent | 8da4da37ccbcc6921f97eeb0c9cd3c23567bd761 (diff) | |
download | volse-hubzilla-2035a5dd763f7524cdc1a678b0e8dbca94f270f5.tar.gz volse-hubzilla-2035a5dd763f7524cdc1a678b0e8dbca94f270f5.tar.bz2 volse-hubzilla-2035a5dd763f7524cdc1a678b0e8dbca94f270f5.zip |
allow zot public providers to list their location, as a non US-based server could be a strong selling point.
Diffstat (limited to 'mod/dirsearch.php')
-rw-r--r-- | mod/dirsearch.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/dirsearch.php b/mod/dirsearch.php index 115bc2235..66f9a6f4c 100644 --- a/mod/dirsearch.php +++ b/mod/dirsearch.php @@ -242,7 +242,7 @@ function list_public_sites() { else $register = 'closed'; - $ret['sites'][] = array('url' => $rr['site_url'], 'access' => $access, 'register' => $register, 'sellpage' => $rr['site_sellpage']); + $ret['sites'][] = array('url' => $rr['site_url'], 'access' => $access, 'register' => $register, 'sellpage' => $rr['site_sellpage'], 'location' => $rr['site_location']); } } return $ret; |