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
It looks like this should be an easy fix. From class-export.php:
/*** Increase pagination limit for CSV Output** @param int $records_per_page Old limit for records_per_page.* @return int*/publicfunctiondisable_paginate( $records_per_page ) {
return10000;
}
I have no idea what a sensible number to cap it at would be, though. The site I discovered this on has 164,000 records and counting and Stream otherwise works fine with that volume, so probably higher than that?
I have no idea what a sensible number to cap it at would be, though. The site I discovered this on has 164,000 records and counting and Stream otherwise works fine with that volume, so probably higher than that?
apply_filters() makes sense here, so everybody can have it according to their environment capability.
Bug Report
Expected Behavior
A CSV export should contain all the data Stream has.
Actual Behavior
The export is cut off at 10,000 items.
Steps to Reproduce the Problem
I have only seen this on one site
System Information
This would be largely sidestepped by fixing #1191
The text was updated successfully, but these errors were encountered: