Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes dev/core#2888 SearchKit download CSV broken #21724

Merged
merged 1 commit into from
Oct 5, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 0 additions & 8 deletions ext/search_kit/Civi/Api4/Action/SearchDisplay/Run.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down