You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in inigen ical Dateien hab ich gesehne das die Zeitzone bei dtstart und dtend dabei ist
DTSTART;TZID=GMT:20100117T083000
, dafür wär es hilfreich folgendes mit einzubauen
$this->ical->setConfig( 'TZID', $GLOBALS['TL_CONFIG']['timeZone'] );
zusätzlich werden die Felder aus der cep Erweiterung nur im Export berücksichtigt.
z.b.
if ($objEvents->cep_location)
{
$vevent->setProperty( 'location', trim(html_entity_decode($objEvents->cep_location, ENT_QUOTES, 'UTF-8')));
}
das gehört auch in die ContentICal
Vielen Dank
The text was updated successfully, but these errors were encountered:
Hallo Helmut,
in inigen ical Dateien hab ich gesehne das die Zeitzone bei dtstart und dtend dabei ist
DTSTART;TZID=GMT:20100117T083000
, dafür wär es hilfreich folgendes mit einzubauen
$this->ical->setConfig( 'TZID', $GLOBALS['TL_CONFIG']['timeZone'] );
zusätzlich werden die Felder aus der cep Erweiterung nur im Export berücksichtigt.
z.b.
if ($objEvents->cep_location)
{
$vevent->setProperty( 'location', trim(html_entity_decode($objEvents->cep_location, ENT_QUOTES, 'UTF-8')));
}
das gehört auch in die ContentICal
Vielen Dank
The text was updated successfully, but these errors were encountered: