Skip to content
Snippets Groups Projects

Fix schema issue on aggregated fields

3 unresolved threads

Closes #2976616

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
515 515 'trim' => ['default' => FALSE],
516 516 'preserve_tags' => ['default' => ''],
517 517 'html' => ['default' => FALSE],
518 // Undefined keys used in code and in tests; not in schema.yml files.
  • 1585 1594
    1586 1595 // If the query and fragment were programmatically assigned overwrite any
    1587 1596 // parsed values.
    1588 if (isset($alter['query'])) {
    1597 // This code allows for possibility of extra keys in $alter not declared in
    1598 // defineOptions() or schema.yml.
    1599 if (!empty($alter['query'])) {
  • 147 145 protected function defineOptions() {
    148 146 $options = parent::defineOptions();
    149 147
    148 $options['plugin_id'] = ['default' => ''];
    Please register or sign in to reply
    Loading