From 57eb5fd7021adbee5e54ecd14e031eecc044d043 Mon Sep 17 00:00:00 2001 From: Adam Vessey <adam@discoverygarden.ca> Date: Fri, 16 Sep 2022 17:02:19 -0300 Subject: [PATCH] More verbose output status message. --- islandora_fits.install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/islandora_fits.install b/islandora_fits.install index cc00f330..7ef59491 100644 --- a/islandora_fits.install +++ b/islandora_fits.install @@ -45,7 +45,7 @@ function islandora_fits_requirements($phase) : array { $term_exists = _islandora_fits_term_exists(); $requirements['islandora_fits_term_exists'] = [ 'title' => t('FITS Term Exists'), - 'value' => $term_exists, + 'value' => $term_exists ? t('Exists') : t('Does not exist'), 'description' => t('Whether or not a term with the URI targeted by default FITS derivative configuration exists. If derivative configurations were made to target another URI, this can probably be ignored.'), 'severity' => $term_exists ? REQUIREMENT_OK : REQUIREMENT_WARNING ];