• A new version of Full Calendar is now available.

    See the details here

Fixed Views loading continuously and not working

@troester @achartier
In fabrik 4.3.1 it stopped working again.
in the file:
components/com_fabrik/router.php
on line 172
Code:
    if ($view == 'visualization' && Factory::getConfig()->get('sefSuffix', 0)) {
while the working one would be:
Code:
if ($view == 'visualization') {
has been added as seen above
&& Factory::getConfig()->get('sefSuffix', 0))
which causes it to stop working again.
Can you check?
 
We added that change because the fullcalendar failed. Will have to look at it again. Do you have a site I can take a backup of to test this?
 
We added that change because the fullcalendar failed. Will have to look at it again. Do you have a site I can take a backup of to test this?
I forgot fullcalendar failed again with sef settings on.
Code:
if ($view == 'visualization') {
so it goes back to working with sef settings on
 
It's a typo, it must be
if ($view == 'visualization' && Factory::getConfig()->get('sef_suffix', 0)) {

Should be fixed again.
 
Back
Top