Commit ae6e0ce8 authored by git's avatar git Committed by Azz-eddine BERRAMOU
Browse files

Issue #3297073 by Project Update Bot: Automated Drupal 10 compatibility fixes

parent 426f4593
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
name: Entity Embed Link
type: module
description: Allows embedded entities to link to arbitrary URLs.
core: 8.x
core_version_requirement: ^8 || ^9
core_version_requirement: ^8.8 || ^9 || ^10
package: Filters
dependencies:
  - entity_embed:entity_embed
+1 −1
Original line number Diff line number Diff line
@@ -62,7 +62,7 @@ function entity_embed_link_form_entity_embed_dialog_alter(&$form, FormStateInter
 * Implements hook_theme_registry_alter().
 */
function entity_embed_link_theme_registry_alter(&$theme_registry) {
  $theme_registry['entity_embed_container']['path'] = drupal_get_path('module', 'entity_embed_link') . '/templates';
  $theme_registry['entity_embed_container']['path'] = \Drupal::service('extension.list.module')->getPath('entity_embed_link') . '/templates';
}

/**