Skip to content
Snippets Groups Projects

Resolve #2769407 "For 11"

Open Joseph Olstad requested to merge issue/drupal-2769407:2769407-for-11 into 11.x
2 unresolved threads

Closes #2769407

Merge request reports

Members who can merge are allowed to add commits.
Code Quality is loading
Test summary results are being parsed
Ready to merge by members who can write to the target branch.
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
9 9 use Drupal\views\ViewEntityInterface;
10 10 use Drupal\views\ViewsConfigUpdater;
11 11
12 /**
13 * Update boolean filter settings.
14 */
15 function views_post_update_boolean_filter_accept_null(?array &$sandbox = NULL): void {
  • 134 134 $this->value_value = $this->definition['title'];
    135 135 }
    136 136
    137 if (isset($this->definition['accept null'])) {
    138 $this->accept_null = (bool) $this->definition['accept null'];
    139 }
    140 elseif (isset($this->definition['accept_null'])) {
    141 $this->accept_null = (bool) $this->definition['accept_null'];
    137 foreach (['accept_null', 'accept null'] as $key) {
  • Stephen Mustgrave added 136 commits

    added 136 commits

    • 40af759a...5221f2e0 - 135 commits from branch project:11.x
    • aaa8c598 - Merge branch '11.x' of https://git.drupalcode.org/project/drupal into 2769407-for-11

    Compare with previous version

  • Please register or sign in to reply
    Loading