Issue #3494566 Allow zero value to override pager offset.
Closes #3494566
Merge request reports
Activity
34 34 * {@inheritdoc} 35 35 */ 36 36 public function alterView(ViewExecutable $view, $value) { 37 if (!empty($value)) { 37 if (!is_null($value)) { changed this line in version 2 of the diff
added 2 commits
Please register or sign in to reply