diff options
author | friendica <info@friendica.com> | 2013-11-14 18:08:05 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-11-14 18:08:05 -0800 |
commit | 512c52fbbd1a3a173f6377ba1ec213da144125df (patch) | |
tree | d08122cc0d17b89e5591612cb810683e5cfe7c57 /mod/pubsites.php | |
parent | d0df12c259d84cd4e341aa484692ebbb7367f9f6 (diff) | |
download | volse-hubzilla-512c52fbbd1a3a173f6377ba1ec213da144125df.tar.gz volse-hubzilla-512c52fbbd1a3a173f6377ba1ec213da144125df.tar.bz2 volse-hubzilla-512c52fbbd1a3a173f6377ba1ec213da144125df.zip |
making it less complicated to join
Diffstat (limited to 'mod/pubsites.php')
-rw-r--r-- | mod/pubsites.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/pubsites.php b/mod/pubsites.php index 0441f928b..e744906fb 100644 --- a/mod/pubsites.php +++ b/mod/pubsites.php @@ -30,7 +30,7 @@ function pubsites_content(&$a) { if($j) { $o .= '<table border="1"><tr><td>' . t('Site URL') . '</td><td>' . t('Access Type') . '</td><td>' . t('Registration Policy') . '</td><td>' . t('Location') . '</td></tr>'; foreach($j['sites'] as $jj) { - $o .= '<tr><td>' . '<a href="'. (($jj['sellpage']) ? $jj['sellpage'] : $jj['url']) . '" >' . $jj['url'] . '</a>' . '</td><td>' . $jj['access'] . '</td><td>' . $jj['register'] . '</td><td>' . $jj['location'] . '</td></tr>'; + $o .= '<tr><td>' . '<a href="'. (($jj['sellpage']) ? $jj['sellpage'] : $jj['url'] . '/register' ) . '" >' . $jj['url'] . '</a>' . '</td><td>' . $jj['access'] . '</td><td>' . $jj['register'] . '</td><td>' . $jj['location'] . '</td></tr>'; } $o .= '</table>'; |