Commit ed42fc03 authored by Damien McKenna's avatar Damien McKenna
Browse files

By DamienMcKenna: Minor code readability tweak.

parent 7d7a1a2b
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -24,6 +24,7 @@ Metatag 8.x-1.x-dev, xxxx-xx-xx
#3109835 by phenaproxima: Declare compatibility with Drupal 9.
#3113481 by thalles: Fix subclassing and stop overriding constructors in
  metatag_views\Plugin\views\display_extender\MetatagDisplayExtender.
By DamienMcKenna: Minor code readability tweak.


Metatag 8.x-1.11, 2019-12-20
+2 −1
Original line number Diff line number Diff line
@@ -116,7 +116,8 @@ class MetatagSettingsForm extends ConfigFormBase {
        $value[$entity_type][$bundle_id] = $groups[0];
      }
    }
    $settings->set('entity_type_groups', $value)->save();
    $settings->set('entity_type_groups', $value);
    $settings->save();
    parent::submitForm($form, $form_state);
  }