diff options
author | friendica <info@friendica.com> | 2013-09-06 03:16:04 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-09-06 03:16:04 -0700 |
commit | 0387fa10c9730d0576c850ecfa14f596d65db6fd (patch) | |
tree | fc0e40579eb6172d9a43bae627536c2996ea6f7b /mod/pubsites.php | |
parent | c09f1a437b65e340cbf5899e3ebf773bd342b3bc (diff) | |
download | volse-hubzilla-0387fa10c9730d0576c850ecfa14f596d65db6fd.tar.gz volse-hubzilla-0387fa10c9730d0576c850ecfa14f596d65db6fd.tar.bz2 volse-hubzilla-0387fa10c9730d0576c850ecfa14f596d65db6fd.zip |
linkify the site url
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 72a93c810..d226f5d9f 100644 --- a/mod/pubsites.php +++ b/mod/pubsites.php @@ -27,7 +27,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></tr>'; foreach($j['sites'] as $jj) { - $o .= '<tr><td>' . $jj['url'] . '</td><td>' . $jj['access'] . '</td><td>' . $jj['register'] . '</td></tr>'; + $o .= '<tr><td>' . '<a href="'. $jj['url'] . '" >' . $jj['url'] . '</a>' . '</td><td>' . $jj['access'] . '</td><td>' . $jj['register'] . '</td></tr>'; } $o .= '</table>'; |