Skip to content

Commit 3d0c0ea

Browse files
committed
set limit for export all beneficiaries back to 500
1 parent 6b8e412 commit 3d0c0ea

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

include/people.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ function () use ($action, &$cmsmain) {
100100
addbutton('export', 'Export Selected', ['icon' => 'fa-download', 'showalways' => false, 'testid' => 'exportBeneficiariesButton']);
101101

102102
// Show export all button if there are more than 500 beneficiaries, and if no filters applied
103-
if (($number_of_people >= 200) && !$is_filtered) {
103+
if (($number_of_people >= 500) && !$is_filtered) {
104104
listsetting('allowexportall', true);
105105
}
106106
if (!empty($tags)) {

0 commit comments

Comments
 (0)