diff --git a/src/Plugin/pathauto/AliasType/EntityAliasTypeBase.php b/src/Plugin/pathauto/AliasType/EntityAliasTypeBase.php index 2d9081e..7277a91 100644 --- a/src/Plugin/pathauto/AliasType/EntityAliasTypeBase.php +++ b/src/Plugin/pathauto/AliasType/EntityAliasTypeBase.php @@ -155,7 +155,7 @@ public function buildConfigurationForm(array $form, FormStateInterface $form_sta $form['bundles'][$itemname][$key] = array( '#type' => 'textfield', '#title' => $itemlabel, - '#default_value' => isset($this->configuration[$itemname . '.' . $key]) ? $this->configuration[$itemname . '.' . $key] : NULL, + '#default_value' => isset($this->configuration['bundles'][$itemname][$key]) ? $this->configuration['bundles'][$itemname][$key] : NULL, '#size' => 65, '#maxlength' => 1280, '#element_validate' => array('token_element_validate'),