diff options
Diffstat (limited to 'engine/lib/statistics.php')
-rw-r--r-- | engine/lib/statistics.php | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/engine/lib/statistics.php b/engine/lib/statistics.php index 844cbfa01..8744db4ab 100644 --- a/engine/lib/statistics.php +++ b/engine/lib/statistics.php @@ -79,13 +79,16 @@ } /** - * Return a list of how many users are currently online. - * - * @param int $limit Number of users to return + * Return a list of how many users are currently online, rendered as a view. */ - function get_online_users($limit = 10) + function get_online_users() { - // TODO: Writeme + $objects = find_active_users(); + + if ($objects) + { + return elgg_view_entity_list($objects, count($objects), 0, 10); + } } /** |