aboutsummaryrefslogtreecommitdiff
path: root/mod/pages/lib/pages.php
diff options
context:
space:
mode:
authorcash <cash.costello@gmail.com>2012-01-04 21:43:35 -0500
committercash <cash.costello@gmail.com>2012-01-04 21:43:35 -0500
commit5c315481abd540ffb31521043797f416f93f2849 (patch)
tree7b51b861b4169187654a547f7c7bfd891b69ee26 /mod/pages/lib/pages.php
parent52d8ecdc218a585ddaca08fd1ffd9652bc3201b6 (diff)
downloadelgg-5c315481abd540ffb31521043797f416f93f2849.tar.gz
elgg-5c315481abd540ffb31521043797f416f93f2849.tar.bz2
Fixes #4266 fixed limit bugs with pages plugin
Diffstat (limited to 'mod/pages/lib/pages.php')
-rw-r--r--mod/pages/lib/pages.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/mod/pages/lib/pages.php b/mod/pages/lib/pages.php
index 0a6f3a620..5c5323d6f 100644
--- a/mod/pages/lib/pages.php
+++ b/mod/pages/lib/pages.php
@@ -78,6 +78,7 @@ function pages_register_navigation_tree($container) {
'type' => 'object',
'subtype' => 'page_top',
'container_guid' => $container->getGUID(),
+ 'limit' => 0,
));
foreach ($top_pages as $page) {
@@ -96,6 +97,7 @@ function pages_register_navigation_tree($container) {
'subtype' => 'page',
'metadata_name' => 'parent_guid',
'metadata_value' => $parent->getGUID(),
+ 'limit' => 0,
));
foreach ($children as $child) {