diff options
author | friendica <info@friendica.com> | 2013-09-06 03:13:23 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-09-06 03:13:23 -0700 |
commit | c09f1a437b65e340cbf5899e3ebf773bd342b3bc (patch) | |
tree | 150a46d5091aa035f96a03b1d57fdf7bfa47404b | |
parent | 77ba2dcb06e67aff3768ff6c17cb6244fa2b5f03 (diff) | |
download | volse-hubzilla-c09f1a437b65e340cbf5899e3ebf773bd342b3bc.tar.gz volse-hubzilla-c09f1a437b65e340cbf5899e3ebf773bd342b3bc.tar.bz2 volse-hubzilla-c09f1a437b65e340cbf5899e3ebf773bd342b3bc.zip |
Add a border until we can theme this sucker
-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 694541b7a..72a93c810 100644 --- a/mod/pubsites.php +++ b/mod/pubsites.php @@ -25,7 +25,7 @@ function pubsites_content(&$a) { if($ret['success']) { $j = json_decode($ret['body'],true); if($j) { - $o .= '<table><tr><td>' . t('Site URL') . '</td><td>' . t('Access Type') . '</td><td>' . t('Registration Policy') . '</td></tr>'; + $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>'; } |