Skip to content
Snippets Groups Projects
Unverified Commit 2df7d0cd authored by Eileen McNaughton's avatar Eileen McNaughton Committed by GitHub
Browse files

Merge pull request #21724 from colemanw/fixSeed

Fixes #2888 SearchKit download CSV broken
parents 30b363bc b53f1cad
Branches
Tags
No related merge requests found
......@@ -41,6 +41,14 @@ abstract class AbstractRunAction extends \Civi\Api4\Generic\AbstractAction {
*/
protected $filters = [];
/**
* Integer used as a seed when ordering by RAND().
* This keeps the order stable enough to use a pager with random sorting.
*
* @var int
*/
protected $seed;
/**
* Name of Afform, if this display is embedded (used for permissioning)
* @var string
......
......@@ -22,14 +22,6 @@ class Run extends AbstractRunAction {
*/
protected $limit;
/**
* Integer used as a seed when ordering by RAND().
* This keeps the order stable enough to use a pager with random sorting.
*
* @var int
*/
protected $seed;
/**
* @param \Civi\Api4\Generic\Result $result
* @throws \API_Exception
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment