From 91978de57367f28b2bbbd746db211847b609e978 Mon Sep 17 00:00:00 2001 From: Matt Way Date: Tue, 3 Sep 2024 21:21:59 +1000 Subject: [PATCH] Fix csv-normaliser not skipping example lines --- csv-normaliser/main.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csv-normaliser/main.php b/csv-normaliser/main.php index dd1f2ef..24c2b0b 100644 --- a/csv-normaliser/main.php +++ b/csv-normaliser/main.php @@ -82,7 +82,7 @@ if (($handle = fopen($inputFile, "r")) !== FALSE) { $candidateName = trim($data[1]); - if ($candidateName == " example name") { + if ($candidateName == "example name") { error_log("Skipping line ". $currentLine); continue; }