diff options
Diffstat (limited to 'views/default/page/components')
-rw-r--r-- | views/default/page/components/list.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/views/default/page/components/list.php b/views/default/page/components/list.php index ae951c89f..5e8c8432d 100644 --- a/views/default/page/components/list.php +++ b/views/default/page/components/list.php @@ -25,6 +25,11 @@ $pagination = elgg_extract('pagination', $vars, true); $offset_key = elgg_extract('offset_key', $vars, 'offset'); $position = elgg_extract('position', $vars, 'after'); +// @todo standardize on full - will require backward compatible code +if (isset($vars['full_view'])) { + $vars['full'] = $vars['full_view']; +} + $list_class = 'elgg-list'; if (isset($vars['list_class'])) { $list_class = "{$vars['list_class']} $list_class"; |