Skip to content
Snippets Groups Projects
Commit 321498e5 authored by Christian Eßl's avatar Christian Eßl Committed by Daniel Goerz
Browse files

[BUGFIX] Fix wrong language label in FileContentParser

The "extension.images" label in FileContentParser had the wrong case.

Resolves: #90452
Releases: master, 9.5
Change-Id: Iee9a5ca03c1e495355570ec92e3c63ebe05e187c
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/63335


Tested-by: default avatarTYPO3com <noreply@typo3.com>
Tested-by: default avatarBjörn Jacob <bjoern.jacob@tritum.de>
Tested-by: default avatarOliver Bartsch <bo@cedev.de>
Tested-by: default avatarDaniel Goerz <daniel.goerz@posteo.de>
Reviewed-by: default avatarBjörn Jacob <bjoern.jacob@tritum.de>
Reviewed-by: default avatarOliver Bartsch <bo@cedev.de>
Reviewed-by: default avatarOliver Klee <typo3-coding@oliverklee.de>
Reviewed-by: default avatarDaniel Goerz <daniel.goerz@posteo.de>
parent 3ed5450f
Branches
Tags
No related merge requests found
......@@ -396,7 +396,7 @@ class FileContentParser
case 'jpg':
case 'tif':
// PHP EXIF
return sprintf($this->sL('LLL:EXT:indexed_search/Resources/Private/Language/locallang_main.xlf:extension.Images'), $extension);
return sprintf($this->sL('LLL:EXT:indexed_search/Resources/Private/Language/locallang_main.xlf:extension.images'), $extension);
case 'html':
case 'htm':
// PHP strip-tags()
......
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