mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
FIX TinyMCEConfig image size presets handle incorrect values
This commit is contained in:
parent
8053bc7a72
commit
58ed426653
@ -16,7 +16,7 @@ SilverStripe\Core\Injector\Injector:
|
|||||||
|
|
||||||
SilverStripe\Forms\HTMLEditor\TinyMCEConfig:
|
SilverStripe\Forms\HTMLEditor\TinyMCEConfig:
|
||||||
image_size_presets:
|
image_size_presets:
|
||||||
- width: 600,
|
- width: 600
|
||||||
i18n: SilverStripe\Forms\HTMLEditor\TinyMCEConfig.BEST_FIT
|
i18n: SilverStripe\Forms\HTMLEditor\TinyMCEConfig.BEST_FIT
|
||||||
text: Best fit
|
text: Best fit
|
||||||
name: bestfit
|
name: bestfit
|
||||||
|
@ -694,6 +694,10 @@ class TinyMCEConfig extends HTMLEditorConfig implements i18nEntityProvider
|
|||||||
}
|
}
|
||||||
|
|
||||||
foreach ($settings['image_size_presets'] as &$preset) {
|
foreach ($settings['image_size_presets'] as &$preset) {
|
||||||
|
if (isset($preset['width'])) {
|
||||||
|
$preset['width'] = (int) $preset['width'];
|
||||||
|
}
|
||||||
|
|
||||||
if (isset($preset['i18n'])) {
|
if (isset($preset['i18n'])) {
|
||||||
$preset['text'] = _t(
|
$preset['text'] = _t(
|
||||||
$preset['i18n'],
|
$preset['i18n'],
|
||||||
|
Loading…
Reference in New Issue
Block a user