From fd5dbec277c9c7d4f2cbd6996a24dc57a61f3ed5 Mon Sep 17 00:00:00 2001 From: Louis Jeckel Date: Thu, 27 Aug 2020 18:42:33 +0200 Subject: [PATCH] Update PdfFile.php --- app/PdfFile.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/PdfFile.php b/app/PdfFile.php index 0b8aaef..9422528 100644 --- a/app/PdfFile.php +++ b/app/PdfFile.php @@ -425,7 +425,7 @@ class PdfFile extends TwillModel implements Sortable $text = preg_replace('/^([A-Z]) /', '$1', $text); $result[] = [ - 'content' => trim($text), + 'content' => Str::lower(trim($text)), 'page' => $page_i, ]; } -- 2.39.5