diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-11-06 22:04:16 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-11-06 22:04:16 +0000 |
commit | f73af39ebfa8f51d7483120b3be67001b29b232d (patch) | |
tree | f8fda64027127a576c0c1909221644f5d559f173 /engine/lib | |
parent | 6173c278a5423bd3faf569fe76dc3e9d83f0cae8 (diff) | |
download | elgg-f73af39ebfa8f51d7483120b3be67001b29b232d.tar.gz elgg-f73af39ebfa8f51d7483120b3be67001b29b232d.tar.bz2 |
Refs #1411 fixes bug introduced in [7213] that broke listing relationships
git-svn-id: http://code.elgg.org/elgg/trunk@7248 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib')
-rw-r--r-- | engine/lib/relationships.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/engine/lib/relationships.php b/engine/lib/relationships.php index c9b47df08..e09493c74 100644 --- a/engine/lib/relationships.php +++ b/engine/lib/relationships.php @@ -428,9 +428,10 @@ $fullview = true, $viewtypetoggle = false, $pagination = true) { 'types' => $type, 'subtypes' => $subtype, 'owner_guid' => $owner_guid, - 'order_by' => '', 'limit' => $limit, - 'count' => TRUE + 'full_view' => $fullview, + 'view_type_toggle' => $viewtypetoggle, + 'pagination' => $pagination, )); } |