Skip to content

Commit

Permalink
[BUGFIX] Add missing quotes to image processing suggestion
Browse files Browse the repository at this point in the history
Install tool suggests to set
`$GLOBALS['TYPO3_CONF_VARS']['GFX']['processor_colorspace'] = sRGB`
if images appear too dark. In general this is the correct
suggestion, but the value must be quoted.

This change adds the missing single quotes for the value.

Resolves: #103124
Releases: main, 12.4
Change-Id: I2e1fd2ebebf1d67870145df29ec0e40b330a5065
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/82975
Tested-by: core-ci <typo3@b13.com>
Reviewed-by: Oliver Bartsch <bo@cedev.de>
Tested-by: Oliver Bartsch <bo@cedev.de>
  • Loading branch information
derhansen authored and o-ba committed Feb 15, 2024
1 parent f872dc1 commit 76bba45
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -17,7 +17,7 @@ <h2>Convert image formats to jpg</h2>
<f:be.infobox title="Dark images" state="-1">
<p>
In case the images appear remarkably darker than the reference images,
try to set<br/> <code>$GLOBALS['TYPO3_CONF_VARS']['GFX']['processor_colorspace'] = sRGB</code>.
try to set<br/> <code>$GLOBALS['TYPO3_CONF_VARS']['GFX']['processor_colorspace'] = 'sRGB';</code>.
</p>
</f:be.infobox>

Expand Down

0 comments on commit 76bba45

Please sign in to comment.