Update reports.php

Bump limit as it's too low.
This commit is contained in:
Paul Kevan 2024-05-23 15:09:36 +01:00 committed by GitHub
parent 1cabbc9729
commit 83ef61b2f1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -65,7 +65,7 @@ function render_company_report_page() {
$pledges = get_posts( array(
'post_type' => '5ftf_pledge',
'post_status' => $status,
'posts_per_page' => 250, // set to 250 to avoid unexpected memory overuse.
'posts_per_page' => 500, // set to 500 to avoid unexpected memory overuse.
'orderby' => 'post_title',
'order' => 'ASC',
) );