Skip to content

Commit

Permalink
Fix copypasta...
Browse files Browse the repository at this point in the history
Pointing at the appropriate term-existence check helps. :P
  • Loading branch information
adam-vessey committed May 29, 2023
1 parent 9f9c41a commit 3aca206
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion islandora_mirador.install
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 3aca206

Please sign in to comment.