You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just tried getPage on v3.0.0 Beta 1.
The page rendered my resources like getResources normally would but the placeholders for pagination were empty.
I debugged by checking the [properties] it was building and noticed the limit was 0.
I manually put a number on this line instead of NULL and it worked as expected.
Just tried getPage on v3.0.0 Beta 1.
The page rendered my resources like getResources normally would but the placeholders for pagination were empty.
I debugged by checking the [properties] it was building and noticed the limit was 0.
I manually put a number on this line instead of NULL and it worked as expected.
$properties['limit'] = (isset($_GET['limit'])) ? intval($_GET['limit']) : 9;
Same snippet call as usual.
<ul class="pageNav clearfix">[[!+page.nav]]</ul>
The text was updated successfully, but these errors were encountered: