Thanks for your help.
Finally, we have fixed this issue relative to missing ID parameter required with Codemirror 6 installed along Joomla 5.
It was OK on joomla 4.4 as using Codemirror 5.65.
ISSUE on Crosstec - Breezingforms - Joomla 5
Fix : "Id" mandatory for CodeMirror v6 (in joomla 5)echo $editor->display() parameter missing
$editor->display PARAMS missing in position 8 = null > Replace by value in position 1
See below example:
// BEFORE : echo $editor->display('code', $row->code, '100%', 300, 40, 20, false, null, null, null, $params);
// AFTER : echo $editor->display('code', $row->code, '100%', 300, 40, 20, false, 'code', null, null, $params);
echo $editor->display(...) bug
All files within the "administrator/compenents/com_breezingforms/admin" directory must be updated.
We've developped a breezingforms patch to fix it available on crosstec support
and our friend: https://www.breezingforms.eddy-vh.com
Finally, we have fixed this issue relative to missing ID parameter required with Codemirror 6 installed along Joomla 5.
It was OK on joomla 4.4 as using Codemirror 5.65.
ISSUE on Crosstec - Breezingforms - Joomla 5
Fix : "Id" mandatory for CodeMirror v6 (in joomla 5)echo $editor->display() parameter missing
$editor->display PARAMS missing in position 8 = null > Replace by value in position 1
See below example:
// BEFORE : echo $editor->display('code', $row->code, '100%', 300, 40, 20, false, null, null, null, $params);
// AFTER : echo $editor->display('code', $row->code, '100%', 300, 40, 20, false, 'code', null, null, $params);
echo $editor->display(...) bug
All files within the "administrator/compenents/com_breezingforms/admin" directory must be updated.
We've developped a breezingforms patch to fix it available on crosstec support
and our friend: https://www.breezingforms.eddy-vh.com
Statistics: Posted by vcmb — Sun Jan 14, 2024 1:20 pm