diff options
Diffstat (limited to 'actions/showstream.php')
-rw-r--r-- | actions/showstream.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/actions/showstream.php b/actions/showstream.php index 984c2454b..4f9128be8 100644 --- a/actions/showstream.php +++ b/actions/showstream.php @@ -206,6 +206,11 @@ class ShowstreamAction extends StreamAction { } } + # close any unclosed row + if ($cnt % SUBSCRIPTIONS_PER_ROW != 0) { + common_element_end('div'); + } + common_element('a', array('href' => common_local_url('subscriptions', array('nickname' => $profile->nickname)), 'class' => 'moresubscriptions'), |