diff options
author | cash <cash.costello@gmail.com> | 2013-05-30 21:22:32 -0400 |
---|---|---|
committer | cash <cash.costello@gmail.com> | 2013-05-30 21:22:32 -0400 |
commit | 0cc014239e2f8ee15054e25c68787494459db2bc (patch) | |
tree | 5839a721c706ed99f0e938d272c491e621206110 /mod/thewire | |
parent | bbf99434e13ebf304fb15a8c5b9d70c621f38c86 (diff) | |
download | elgg-0cc014239e2f8ee15054e25c68787494459db2bc.tar.gz elgg-0cc014239e2f8ee15054e25c68787494459db2bc.tar.bz2 |
not forcing the limit to be a certain value in content plugins
Diffstat (limited to 'mod/thewire')
-rw-r--r-- | mod/thewire/pages/thewire/everyone.php | 2 | ||||
-rw-r--r-- | mod/thewire/pages/thewire/owner.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/mod/thewire/pages/thewire/everyone.php b/mod/thewire/pages/thewire/everyone.php index 909f0caf2..c7438747e 100644 --- a/mod/thewire/pages/thewire/everyone.php +++ b/mod/thewire/pages/thewire/everyone.php @@ -18,7 +18,7 @@ if (elgg_is_logged_in()) { $content .= elgg_list_entities(array( 'type' => 'object', 'subtype' => 'thewire', - 'limit' => 15, + 'limit' => get_input('limit', 15), )); $body = elgg_view_layout('content', array( diff --git a/mod/thewire/pages/thewire/owner.php b/mod/thewire/pages/thewire/owner.php index 6246c1770..d8dff401e 100644 --- a/mod/thewire/pages/thewire/owner.php +++ b/mod/thewire/pages/thewire/owner.php @@ -26,7 +26,7 @@ $content .= elgg_list_entities(array( 'type' => 'object', 'subtype' => 'thewire', 'owner_guid' => $owner->guid, - 'limit' => 15, + 'limit' => get_input('limit', 15), )); $body = elgg_view_layout('content', array( |