aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorredmatrix <redmatrix@redmatrix.me>2015-12-05 12:41:08 -0800
committerredmatrix <redmatrix@redmatrix.me>2015-12-05 12:41:08 -0800
commit61aa33af1d30f047af709d7f513357e62c8307c3 (patch)
tree8ab7dc6080731e9066d1be954b0364486411647d /include
parentd8dc055dce302f7a32df79db1152c98e7f173503 (diff)
parentce686d2c06a19a52015768977e96a76285b40ea5 (diff)
downloadvolse-hubzilla-61aa33af1d30f047af709d7f513357e62c8307c3.tar.gz
volse-hubzilla-61aa33af1d30f047af709d7f513357e62c8307c3.tar.bz2
volse-hubzilla-61aa33af1d30f047af709d7f513357e62c8307c3.zip
Merge https://github.com/redmatrix/hubzilla into pending_merge
Diffstat (limited to 'include')
-rw-r--r--include/widgets.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/widgets.php b/include/widgets.php
index d4f3d32e1..89836f90c 100644
--- a/include/widgets.php
+++ b/include/widgets.php
@@ -1148,7 +1148,7 @@ function widget_forums($arr) {
foreach($r1 as $rr) {
if($unseen && (! intval($rr['unseen'])))
continue;
- $o .= '<li><span class="pull-right">' . ((intval($rr['unseen'])) ? intval($rr['unseen']) : '') . '</span><a href="network?f=&pf=1&cid=' . $rr['abook_id'] . '" ><img src="' . $rr['xchan_photo_s'] . '" style="width: 16px; height: 16px;" /> ' . $rr['xchan_name'] . '</a></li>';
+ $o .= '<li><a href="network?f=&pf=1&cid=' . $rr['abook_id'] . '" ><span class="badge pull-right">' . ((intval($rr['unseen'])) ? intval($rr['unseen']) : '') . '</span><img src="' . $rr['xchan_photo_s'] . '" style="width: 16px; height: 16px;" /> ' . $rr['xchan_name'] . '</a></li>';
}
$o .= '</ul></div>';
}