aboutsummaryrefslogtreecommitdiffstats
path: root/mod/dirsearch.php
diff options
context:
space:
mode:
authorredmatrix <redmatrix@redmatrix.me>2015-10-19 20:36:22 -0700
committerredmatrix <redmatrix@redmatrix.me>2015-10-19 20:36:22 -0700
commit54059b2f153433f7154a754a77dafba1cc97a1a2 (patch)
treea66e5aa65cb598f4bd7ad7550cca7700a68e75ff /mod/dirsearch.php
parent08a5884c9f39c95200d9895cfc3739e77f07901a (diff)
parentf00887ea42e04caecb9cbc56d92c2e70513768af (diff)
downloadvolse-hubzilla-54059b2f153433f7154a754a77dafba1cc97a1a2.tar.gz
volse-hubzilla-54059b2f153433f7154a754a77dafba1cc97a1a2.tar.bz2
volse-hubzilla-54059b2f153433f7154a754a77dafba1cc97a1a2.zip
Merge https://github.com/redmatrix/redmatrix into pending_merge
Diffstat (limited to 'mod/dirsearch.php')
-rw-r--r--mod/dirsearch.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/dirsearch.php b/mod/dirsearch.php
index ec730b28d..937564a79 100644
--- a/mod/dirsearch.php
+++ b/mod/dirsearch.php
@@ -436,9 +436,9 @@ function list_public_sites() {
$register = 'closed';
if(strpos($rr['site_url'],'https://') !== false)
- $ret['sites'][] = array('url' => $rr['site_url'], 'access' => $access, 'register' => $register, 'sellpage' => $rr['site_sellpage'], 'location' => $rr['site_location']);
+ $ret['sites'][] = array('url' => $rr['site_url'], 'access' => $access, 'register' => $register, 'sellpage' => $rr['site_sellpage'], 'location' => $rr['site_location'], 'project' => $rr['site_project']);
else
- $insecure[] = array('url' => $rr['site_url'], 'access' => $access, 'register' => $register, 'sellpage' => $rr['site_sellpage'], 'location' => $rr['site_location']);
+ $insecure[] = array('url' => $rr['site_url'], 'access' => $access, 'register' => $register, 'sellpage' => $rr['site_sellpage'], 'location' => $rr['site_location'], 'project' => $rr['site_project']);
}
if($insecure) {
$ret['sites'] = array_merge($ret['sites'],$insecure);