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 .= '
' . t('Site URL') . ' | ' . t('Access Type') . ' | ' . t('Registration Policy') . ' |
';
+ $o .= '' . t('Site URL') . ' | ' . t('Access Type') . ' | ' . t('Registration Policy') . ' |
';
foreach($j['sites'] as $jj) {
$o .= '' . $jj['url'] . ' | ' . $jj['access'] . ' | ' . $jj['register'] . ' |
';
}