Hi Geraint,
A collegue came up with the following fix, which seems to work well. Do you think that's a dangerous change?
Could this make it in a next version?
In the file:
joomla/administrator/components/com_jevents/controllers/icalevent.php
on line 860 he added a: "Route : : ( )-statement", like this:
$this->setRedirect(Route::_($event->viewDetailLink($year, $month, $day, false, $Itemid), $msg));
so that part of code becomes:
// if the event is published then return to the event
if ($event && $event->state())
{
list($year, $month, $day) = JEVHelper::getYMD();
$this->setRedirect(Route::_($event->viewDetailLink($year, $month, $day, false, $Itemid), $msg));
$this->redirect();
}
else ...