Skip to content
Snippets Groups Projects
Commit 312ed402 authored by Tomas Norre Mikkelsen's avatar Tomas Norre Mikkelsen Committed by Andreas Fernandez
Browse files

[BUGFIX] uft8 encode text to allow special chars in PDF metadata

This encodes the PDF metadata to UTF-8 to ensure that special chars
like æ ø å ü ö ä are allowed without cutting of the metadata text.

Resolves: #80085
Releases: main, 11.5, 10.4
Change-Id: I02b0730dd659b54c0d8c7186a2089419bd56d2a2
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/76892


Reviewed-by: default avatarAndreas Fernandez <a.fernandez@scripting-base.de>
Tested-by: default avatarcore-ci <typo3@b13.com>
Tested-by: default avatarAndreas Fernandez <a.fernandez@scripting-base.de>
parent dc0ad269
Branches
Tags
No related merge requests found
......@@ -796,7 +796,7 @@ class FileContentParser
foreach ($pdfInfoArray as $line) {
$parts = explode(':', $line, 2);
if (count($parts) > 1 && trim($parts[0])) {
$res[strtolower(trim($parts[0]))] = trim($parts[1]);
$res[strtolower(trim($parts[0]))] = mb_convert_encoding(trim($parts[1]), 'UTF-8', 'ISO-8859-1');
}
}
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment