@troester @achartier
In fabrik 4.3.1 it stopped working again.
in the file:
components/com_fabrik/router.php
on line 172
while the working one would be:
has been added as seen above
&& Factory::getConfig()->get('sefSuffix', 0))
which causes it to stop working again.
Can you check?
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)) {
Code:
if ($view == 'visualization') {
&& Factory::getConfig()->get('sefSuffix', 0))
which causes it to stop working again.
Can you check?