Somehow dk_speakout_Petition::all gets a $limit of +INF.
The limit value needs to be constrained.
Add this to the all
method;
$limit = (int) $limit;
if ($limit <= 0 || $limit < $start || !is_finite($limit)) {
$limit = PHP_INT_MAX;
}
-
This topic was modified 5 years, 6 months ago by
youngcp.