Fabrik creates isue with login redirect from login form

Status
Not open for further replies.

kdhoe

New Member
Hi

Cannot save login redirect from login form menu item.
Simple error reporting gives the error
Warning: Undefined variable $form in \administrator\templates\atum\html\layouts\joomla\edit\params.php on line 30
when i open the file it's connected to fabrik.

i see het options login redirect and logout redirect 2 times and setting cannot be saved.

regards
 
This makes the error go away, but the issue with the login redirect stays..

When i uninstall fabrik everything is normal.
 
Last edited:
Issue confirmed.
You can rename
\administrator\templates\atum\html\layouts\joomla\edit\params.php to something else.
Then you should be able to edit the login menu (but you won't be able to set fabrik list menu options...)
 
Can you try in \administrator\templates\atum\html\layouts\joomla\edit\params.php
add
Code:
$formData = $displayData->getForm()->getData();
$fabrikMenu = $displayData->getName() == 'item' && stristr($formData->get('link',''),'com_fabrik');
$fabrikModule = $displayData->getName() == 'module' && stristr($formData->get('module',''),'mod_fabrik');

if (!$fabrikMenu && !$fabrikModule)
{
    require_once $originalLayout;
    return;
}
after
$originalLayout = JPATH_ROOT."/layouts/joomla/edit/params.php";

upload_2023-3-20_20-29-33.png
 
Status
Not open for further replies.
We are in need of some funding.
More details.

Thank you.

Members online

No members online now.
Back
Top