From 3aca206d6ea03801a0a58b2e66f2d0c0c85ba7fc Mon Sep 17 00:00:00 2001 From: Adam Vessey Date: Mon, 29 May 2023 17:30:39 -0300 Subject: [PATCH] Fix copypasta... Pointing at the appropriate term-existence check helps. :P --- islandora_mirador.install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/islandora_mirador.install b/islandora_mirador.install index 4e70cba..596d3e0 100644 --- a/islandora_mirador.install +++ b/islandora_mirador.install @@ -11,7 +11,7 @@ use Drupal\taxonomy\Entity\Term; * Implements hook_install(). */ function islandora_mirador_install($is_syncing) { - if (!_islandora_fits_term_exists()) { + if (!_islandora_mirador_term_exists()) { $callable = $is_syncing ? [\Drupal::messenger(), 'addStatus'] : [\Drupal::messenger(), 'addWarning']; $callable(t('A term in the taxonomy @vid with the URI @uri does not appear to exist. The @migration_id migration can be executed to create it.', [ '@vid' => 'islandora_display',