Inzwischen habe ich die Erweiterung calendarevents soweit angepasst, dass die Methode der Bildverkleinerung auswählbar ist und damit auch wieder funktioniert.
Eventuell kann das auch sonst jemand gebrauchen bis die Erweiterung offiziell aktualisiert wird.
Achtung nicht rückwärtskompatibel (erst ab Version 2.11 verwenden)
PHP-Code:
//system/modules/calendargallery/dca/tl_calendar_events.php ---ALTE Version---:
$GLOBALS['TL_DCA']['tl_calendar_events']['fields']['gal_size'] = array
(
'label' => &$GLOBALS['TL_LANG']['tl_calendar_events']['gal_size'],
'exclude' => true,
'inputType' => 'text',
'eval' => array('multiple'=>true, 'size'=>2, 'rgxp'=>'digit', 'nospace'=>true, 'tl_class'=>'w50'),
);
//system/modules/calendargallery/dca/tl_calendar_events.php ---NEUE Version---:
$GLOBALS['TL_DCA']['tl_calendar_events']['fields']['gal_size'] = array
(
'label' => &$GLOBALS['TL_LANG']['tl_calendar_events']['gal_size'],
'exclude' => true,
'inputType' => 'imageSize',
'options' => $GLOBALS['TL_CROP'],
'reference' => &$GLOBALS['TL_LANG']['MSC'],
'eval' => array('rgxp'=>'digit', 'nospace'=>true, 'helpwizard'=>true, 'tl_class'=>'w50'),
);