From 7ea8d14689c658d02cbbf256ad9e0c48a997da89 Mon Sep 17 00:00:00 2001 From: Joshua Ramon Enslin Date: Wed, 17 Dec 2025 15:44:35 +0100 Subject: [PATCH] Add quotes around error-causing text / unmapped value in MDImporterMissingConcordance --- exceptions/MDImporterMissingConcordance.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exceptions/MDImporterMissingConcordance.php b/exceptions/MDImporterMissingConcordance.php index 93252e9..28819db 100644 --- a/exceptions/MDImporterMissingConcordance.php +++ b/exceptions/MDImporterMissingConcordance.php @@ -70,7 +70,7 @@ final class MDImporterMissingConcordance extends Exception { } - $exception = new MDImporterMissingConcordance("Unmapped specific value of type " . $target_type . ": " . $value_to_map . PHP_EOL . "Please consult https://concordance.museum-digital.org for filling out missing concordances"); + $exception = new MDImporterMissingConcordance("Unmapped specific value of type " . $target_type . ": '" . $value_to_map . '\'' . PHP_EOL . "Please consult https://concordance.museum-digital.org for filling out missing concordances"); $exception->target_type = $target_type; $exception->value_to_map = $value_to_map;