Skip to content
Snippets Groups Projects

Issue #3296959: Drupal 10 compatibility

Closed Balint Pekker requested to merge issue/diff-3296959:3296959-automated-drupal-10 into 8.x-1.x

Closes #3296959

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
  • Nejc Koporec
  • Balint Pekker added 1 commit

    added 1 commit

    Compare with previous version

  • Balint Pekker resolved all threads

    resolved all threads

  • 33 33 $edit['status[value]'] = 1;
    34 34 }
    35 35 }
    36 $this->drupalPostForm($path, $edit, $submit);
    36 if (!is_null($path)) {
    37 $this->drupalGet($path);
    38 }
    39 $this->submitForm($edit, $submit);
  • 31 31 if ($this->configuration['compare_format'] == 1) {
    32 32 if (isset($values['format'])) {
    33 33 $controller = $this->entityTypeManager->getStorage('filter_format');
    34 /** @var \Drupal\filter\Entity\FilterFormat $format */
    34 35 $format = $controller->load($values['format']);
    35 36 // The format loaded successfully.
    36 37 $label = $this->t('Format');
    37 38 if ($format != NULL) {
    38 $result[$field_key][] = $label . ": " . $format->name;
    39 $result[$field_key][] = $label . ": " . $format->get('name')->value;
  • 185 185 $bundles = $field_storage_definition->getBundles();
    186 186 $query->condition('bundle', (array) $bundles, 'IN');
    187 187 }
    188 $result = $query->exists($field_key)->range(0, 1)->execute();
    188 $result = $query
    189 ->exists($field_key)
    190 ->range(0, 1)
    191 ->accessCheck()
    192 ->execute();
  • Lucas Hedding added 1 commit

    added 1 commit

    • f44e94f6 - get tests to pass on 10.1.x locally

    Compare with previous version

  • Lucas Hedding added 1 commit

    added 1 commit

    • 9cd73cef - revert stray changes as noted in review

    Compare with previous version

  • Lucas Hedding added 1 commit

    added 1 commit

    Compare with previous version

  • Lucas Hedding added 1 commit

    added 1 commit

    Compare with previous version

  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Please register or sign in to reply
    Loading