Ticket #1198 (closed confirmed defect: fixed)
'Latest Activity' code doesn't display anything
| Reported by: | munkee | Owned by: | |
|---|---|---|---|
| Priority: | high | Milestone: | Elgg 1.5 |
| Component: | Core | Version: | 1.6 |
| Severity: | major | Keywords: | |
| Cc: | marcus, brettp, dave |
Description
On a blank fresh installation of elgg 1.6 the pre-login screen comes with a standard bit of code which should display all the publicly available 'latest Activity' within the site, it doesnt.
The code is in : elgg/dashboard/latest.php
// Load the front page global $CONFIG; $title = elgg_view_title(elgg_echo('content:latest')); set_context('search'); $content = list_registered_entities(0,10,true,false,array('object','group')); set_context('latest'); $content = elgg_view_layout('two_column_left_sidebar', , $title . $content); page_draw(elgg_echo('content:latest'), $content);
I've been using the same code to display this from elgg 1.2 Thanks,
