diff options
author | redmatrix <redmatrix@redmatrix.me> | 2015-10-19 20:35:44 -0700 |
---|---|---|
committer | redmatrix <redmatrix@redmatrix.me> | 2015-10-19 20:35:44 -0700 |
commit | f00887ea42e04caecb9cbc56d92c2e70513768af (patch) | |
tree | 8882a76a496c38c5e402c407b53b11b7559f604b /mod/dirsearch.php | |
parent | 8aadc2837c0517e4497f80c89bb74a0b921a6e90 (diff) | |
download | volse-hubzilla-f00887ea42e04caecb9cbc56d92c2e70513768af.tar.gz volse-hubzilla-f00887ea42e04caecb9cbc56d92c2e70513768af.tar.bz2 volse-hubzilla-f00887ea42e04caecb9cbc56d92c2e70513768af.zip |
add project info to pubsite list
Diffstat (limited to 'mod/dirsearch.php')
-rw-r--r-- | mod/dirsearch.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/dirsearch.php b/mod/dirsearch.php index d997020b2..2aaa42607 100644 --- a/mod/dirsearch.php +++ b/mod/dirsearch.php @@ -443,9 +443,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); |