diff options
author | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-03-09 19:26:56 +0000 |
---|---|---|
committer | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-03-09 19:26:56 +0000 |
commit | 602abbf5ce303feb11a296a6bd3abc9b92368a41 (patch) | |
tree | ca5049f6cebb9152a2d54b44dae5801093a9a8a3 | |
parent | dedb6102adc53ffdaf431279eb7ef31a0cf825c8 (diff) | |
download | elgg-602abbf5ce303feb11a296a6bd3abc9b92368a41.tar.gz elgg-602abbf5ce303feb11a296a6bd3abc9b92368a41.tar.bz2 |
Fixed incorrect deprecated function rewrite for list_entities().
git-svn-id: http://code.elgg.org/elgg/trunk@5338 36083f99-b078-4883-b0ff-0f9b5a30f544
-rw-r--r-- | engine/lib/entities.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/lib/entities.php b/engine/lib/entities.php index 3eabcafed..af5b140d9 100644 --- a/engine/lib/entities.php +++ b/engine/lib/entities.php @@ -2335,7 +2335,7 @@ function list_entities($type= "", $subtype = "", $owner_guid = 0, $limit = 10, $ } $options['full_view'] = $fullview; - $options['view_toggle_type'] = $viewtypetoggle; + $options['view_type_toggle'] = $viewtypetoggle; $options['pagination'] = $pagination; return elgg_list_entities($options); |