diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-03-12 15:01:25 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-03-12 15:01:25 +0000 |
commit | 7dd75ce9cdb524ff27ada917608c2cc1dc31f499 (patch) | |
tree | 30f2183aa277054577e5717a5f4a87d86c2ca5e9 /engine/lib | |
parent | 538da56bb1d9acf787362fe0f34747118b00b261 (diff) | |
download | elgg-7dd75ce9cdb524ff27ada917608c2cc1dc31f499.tar.gz elgg-7dd75ce9cdb524ff27ada917608c2cc1dc31f499.tar.bz2 |
Refs #3085 moved full_view out of elgg_view_list_item() into $vars to be consistent with other elgg_view* functions
git-svn-id: http://code.elgg.org/elgg/trunk@8659 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib')
-rw-r--r-- | engine/lib/views.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/engine/lib/views.php b/engine/lib/views.php index a66b7748b..27abf8f8e 100644 --- a/engine/lib/views.php +++ b/engine/lib/views.php @@ -1247,7 +1247,6 @@ function elgg_view_form($action, $form_vars = array(), $body_vars = array()) { * View an item in a list * * @param object $item ElggEntity or ElggAnnotation - * @param bool $full_view Whether to render the full view of the object * @param array $vars Additional parameters for the rendering * * @return string @@ -1255,6 +1254,9 @@ function elgg_view_form($action, $form_vars = array(), $body_vars = array()) { * @access private */ function elgg_view_list_item($item, $full_view, array $vars = array()) { + + $full_view = elgg_extract('full_view', $vars, false); + switch ($item->getType()) { case 'user': case 'object': |