aboutsummaryrefslogtreecommitdiffstats
path: root/mod/pubsites.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-11-14 18:08:05 -0800
committerfriendica <info@friendica.com>2013-11-14 18:08:05 -0800
commit512c52fbbd1a3a173f6377ba1ec213da144125df (patch)
treed08122cc0d17b89e5591612cb810683e5cfe7c57 /mod/pubsites.php
parentd0df12c259d84cd4e341aa484692ebbb7367f9f6 (diff)
downloadvolse-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.php2
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>';