aboutsummaryrefslogtreecommitdiff
path: root/engine
diff options
context:
space:
mode:
authorben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-10-07 14:44:55 +0000
committerben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-10-07 14:44:55 +0000
commitca3fa67802a9be55ad7cc13b94ceefe343d6db9d (patch)
tree859ad94a96beeb03aa904d5631792302b1bbc256 /engine
parentce0f4c066bf70dd9a2e1d7454e36d97cf43b5abd (diff)
downloadelgg-ca3fa67802a9be55ad7cc13b94ceefe343d6db9d.tar.gz
elgg-ca3fa67802a9be55ad7cc13b94ceefe343d6db9d.tar.bz2
Removed pagination for the groups widget
git-svn-id: https://code.elgg.org/elgg/trunk@2213 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine')
-rw-r--r--engine/lib/relationships.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/engine/lib/relationships.php b/engine/lib/relationships.php
index 485732a59..8f2d52bbc 100644
--- a/engine/lib/relationships.php
+++ b/engine/lib/relationships.php
@@ -540,9 +540,10 @@
* @param int $limit The number of entities to display on a page
* @param true|false $fullview Whether or not to display the full view (default: true)
* @param true|false $viewtypetoggle Whether or not to allow gallery view
+ * @param true|false $pagination Whether to display pagination (default: true)
* @return string The viewable list of entities
*/
- function list_entities_from_relationship($relationship, $relationship_guid, $inverse_relationship = false, $type = "", $subtype = "", $owner_guid = 0, $limit = 10, $fullview = true, $viewtypetoggle = false) {
+ function list_entities_from_relationship($relationship, $relationship_guid, $inverse_relationship = false, $type = "", $subtype = "", $owner_guid = 0, $limit = 10, $fullview = true, $viewtypetoggle = false, $pagination = true) {
$limit = (int) $limit;
$offset = (int) get_input('offset');