diff options
author | Mario Vavti <mario@mariovavti.com> | 2017-07-02 11:24:17 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2017-07-02 11:24:17 +0200 |
commit | 133292e241f9408ff793aa95aceec00c808fbd68 (patch) | |
tree | 0bddfc473649a96048465f78e9033c2f43669110 /Zotlabs/Widget/Activity.php | |
parent | 0e100a864bdb920a5268a44fc4f3c92834e172c8 (diff) | |
download | volse-hubzilla-133292e241f9408ff793aa95aceec00c808fbd68.tar.gz volse-hubzilla-133292e241f9408ff793aa95aceec00c808fbd68.tar.bz2 volse-hubzilla-133292e241f9408ff793aa95aceec00c808fbd68.zip |
update bs-dev and min version bump
Diffstat (limited to 'Zotlabs/Widget/Activity.php')
-rw-r--r-- | Zotlabs/Widget/Activity.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Widget/Activity.php b/Zotlabs/Widget/Activity.php index 7264a3360..04e9fc4b1 100644 --- a/Zotlabs/Widget/Activity.php +++ b/Zotlabs/Widget/Activity.php @@ -50,7 +50,7 @@ class Activity { $o .= '<h3>' . t('Activity','widget') . '</h3><ul class="nav nav-pills flex-column">'; foreach($arr as $rv) { - $o .= '<li class="nav-item"><a class="nav-link" href="network?f=&xchan=' . urlencode($rv['author_xchan']) . '" ><span class="badge badge-default float-right">' . ((intval($rv['total'])) ? intval($rv['total']) : '') . '</span><img src="' . $rv['author']['xchan_photo_s'] . '" class="menu-img-1" /> ' . $rv['author']['xchan_name'] . '</a></li>'; + $o .= '<li class="nav-item"><a class="nav-link" href="network?f=&xchan=' . urlencode($rv['author_xchan']) . '" ><span class="badge badge-secondary float-right">' . ((intval($rv['total'])) ? intval($rv['total']) : '') . '</span><img src="' . $rv['author']['xchan_photo_s'] . '" class="menu-img-1" /> ' . $rv['author']['xchan_name'] . '</a></li>'; } $o .= '</ul></div>'; } |